@@ -0,0 +1,117 @@ | |||
using Learun.Util; | |||
using System.Data; | |||
using Learun.Application.TwoDevelopment.Changyang_zhdn; | |||
using System.Web.Mvc; | |||
using System.Collections.Generic; | |||
namespace Learun.Application.Web.Areas.Changyang_zhdn.Controllers | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 | |||
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2022-11-10 10:28 | |||
/// 描 述:中职毕业去向【未就业】数据表 | |||
/// </summary> | |||
public class ods_zzbyqxwjysjController : MvcControllerBase | |||
{ | |||
private ods_zzbyqxwjysjIBLL ods_zzbyqxwjysjIBLL = new ods_zzbyqxwjysjBLL(); | |||
#region 视图功能 | |||
/// <summary> | |||
/// 主页面 | |||
/// <summary> | |||
/// <returns></returns> | |||
[HttpGet] | |||
public ActionResult Index() | |||
{ | |||
return View(); | |||
} | |||
/// <summary> | |||
/// 表单页 | |||
/// <summary> | |||
/// <returns></returns> | |||
[HttpGet] | |||
public ActionResult Form() | |||
{ | |||
return View(); | |||
} | |||
#endregion | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// </summary> | |||
/// <param name="pagination">分页参数</param> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
[HttpGet] | |||
[AjaxOnly] | |||
public ActionResult GetPageList(string pagination, string queryJson) | |||
{ | |||
Pagination paginationobj = pagination.ToObject<Pagination>(); | |||
var data = ods_zzbyqxwjysjIBLL.GetPageList(paginationobj, queryJson); | |||
var jsonData = new | |||
{ | |||
rows = data, | |||
total = paginationobj.total, | |||
page = paginationobj.page, | |||
records = paginationobj.records | |||
}; | |||
return Success(jsonData); | |||
} | |||
/// <summary> | |||
/// 获取表单数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <returns></returns> | |||
[HttpGet] | |||
[AjaxOnly] | |||
public ActionResult GetFormData(string keyValue) | |||
{ | |||
var ODS_ZZBYQXWJYSJData = ods_zzbyqxwjysjIBLL.GetODS_ZZBYQXWJYSJEntity( keyValue ); | |||
var jsonData = new { | |||
ODS_ZZBYQXWJYSJ = ODS_ZZBYQXWJYSJData, | |||
}; | |||
return Success(jsonData); | |||
} | |||
#endregion | |||
#region 提交数据 | |||
/// <summary> | |||
/// 删除实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <returns></returns> | |||
[HttpPost] | |||
[AjaxOnly] | |||
public ActionResult DeleteForm(string keyValue) | |||
{ | |||
ods_zzbyqxwjysjIBLL.DeleteEntity(keyValue); | |||
return Success("删除成功!"); | |||
} | |||
/// <summary> | |||
/// 保存实体数据(新增、修改) | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <param name="strEntity">实体</param> | |||
/// <returns></returns> | |||
[HttpPost] | |||
[ValidateAntiForgeryToken] | |||
[AjaxOnly] | |||
public ActionResult SaveForm(string keyValue, string strEntity) | |||
{ | |||
ODS_ZZBYQXWJYSJEntity entity = strEntity.ToObject<ODS_ZZBYQXWJYSJEntity>(); | |||
ods_zzbyqxwjysjIBLL.SaveEntity(keyValue,entity); | |||
if (string.IsNullOrEmpty(keyValue)) | |||
{ | |||
} | |||
return Success("保存成功!"); | |||
} | |||
#endregion | |||
} | |||
} |
@@ -0,0 +1,43 @@ | |||
@{ | |||
ViewBag.Title = "中职毕业去向【未就业】数据表"; | |||
Layout = "~/Views/Shared/_Form.cshtml"; | |||
} | |||
<div class="lr-form-wrap" id="form"> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZBYQXWJYSJ" > | |||
<div class="lr-form-item-title">学校机构代码</div> | |||
<input id="XXJGDM" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZBYQXWJYSJ" > | |||
<div class="lr-form-item-title">学校机构名称</div> | |||
<input id="XXJGMC" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZBYQXWJYSJ" > | |||
<div class="lr-form-item-title">学号</div> | |||
<input id="XH" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZBYQXWJYSJ" > | |||
<div class="lr-form-item-title">姓名</div> | |||
<input id="XM" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZBYQXWJYSJ" > | |||
<div class="lr-form-item-title">专业名称</div> | |||
<input id="ZYMC" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZBYQXWJYSJ" > | |||
<div class="lr-form-item-title">班级名称</div> | |||
<input id="BJMC" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZBYQXWJYSJ" > | |||
<div class="lr-form-item-title">身份证号</div> | |||
<input id="SFZH" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZBYQXWJYSJ" > | |||
<div class="lr-form-item-title">未就业类型</div> | |||
<div id="WJYLX" ></div> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZBYQXWJYSJ" > | |||
<div class="lr-form-item-title">数据采集时间</div> | |||
<input id="SJCJSJ" type="text" class="form-control" /> | |||
</div> | |||
</div> | |||
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_zzbyqxwjysj/Form.js") |
@@ -0,0 +1,51 @@ | |||
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) | |||
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
* 创建人:超级管理员 | |||
* 日 期:2022-11-10 10:28 | |||
* 描 述:中职毕业去向【未就业】数据表 | |||
*/ | |||
var acceptClick; | |||
var keyValue = request('keyValue'); | |||
var bootstrap = function ($, learun) { | |||
"use strict"; | |||
var page = { | |||
init: function () { | |||
$('.lr-form-wrap').lrscroll(); | |||
page.bind(); | |||
page.initData(); | |||
}, | |||
bind: function () { | |||
$('#WJYLX').lrDataItemSelect({ code: 'wjylxdm' }); | |||
}, | |||
initData: function () { | |||
if (!!keyValue) { | |||
$.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_zzbyqxwjysj/GetFormData?keyValue=' + keyValue, function (data) { | |||
for (var id in data) { | |||
if (!!data[id].length && data[id].length > 0) { | |||
$('#' + id ).jfGridSet('refreshdata', data[id]); | |||
} | |||
else { | |||
$('[data-table="' + id + '"]').lrSetFormData(data[id]); | |||
} | |||
} | |||
}); | |||
} | |||
} | |||
}; | |||
// 保存数据 | |||
acceptClick = function (callBack) { | |||
if (!$('body').lrValidform()) { | |||
return false; | |||
} | |||
var postData = { | |||
strEntity: JSON.stringify($('body').lrGetFormData()) | |||
}; | |||
$.lrSaveForm(top.$.rootUrl + '/Changyang_zhdn/ods_zzbyqxwjysj/SaveForm?keyValue=' + keyValue, postData, function (res) { | |||
// 保存成功后才回调 | |||
if (!!callBack) { | |||
callBack(); | |||
} | |||
}); | |||
}; | |||
page.init(); | |||
} |
@@ -0,0 +1,29 @@ | |||
@{ | |||
ViewBag.Title = "中职毕业去向【未就业】数据表"; | |||
Layout = "~/Views/Shared/_Index.cshtml"; | |||
} | |||
<div class="lr-layout " > | |||
<div class="lr-layout-center"> | |||
<div class="lr-layout-wrap lr-layout-wrap-notitle "> | |||
<div class="lr-layout-tool"> | |||
<div class="lr-layout-tool-left"> | |||
</div> | |||
<div class="lr-layout-tool-right"> | |||
<div class=" btn-group btn-group-sm"> | |||
<a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a> | |||
</div> | |||
<div class=" btn-group btn-group-sm" learun-authorize="yes"> | |||
<a id="lr_add" class="btn btn-default"><i class="fa fa-plus"></i> 新增</a> | |||
<a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i> 编辑</a> | |||
<a id="lr_delete" class="btn btn-default"><i class="fa fa-trash-o"></i> 删除</a> | |||
</div> | |||
<div class=" btn-group btn-group-sm" learun-authorize="yes"> | |||
<a id="lr_import" class="btn btn-default"><i class="fa fa-plus"></i> 导入</a> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="lr-layout-body" id="gridtable"></div> | |||
</div> | |||
</div> | |||
</div> | |||
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_zzbyqxwjysj/Index.js") |
@@ -0,0 +1,104 @@ | |||
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) | |||
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
* 创建人:超级管理员 | |||
* 日 期:2022-11-10 10:28 | |||
* 描 述:中职毕业去向【未就业】数据表 | |||
*/ | |||
var refreshGirdData; | |||
var bootstrap = function ($, learun) { | |||
"use strict"; | |||
var page = { | |||
init: function () { | |||
page.initGird(); | |||
page.bind(); | |||
}, | |||
bind: function () { | |||
// 刷新 | |||
$('#lr_refresh').on('click', function () { | |||
location.reload(); | |||
}); | |||
// 新增 | |||
$('#lr_add').on('click', function () { | |||
learun.layerForm({ | |||
id: 'form', | |||
title: '新增', | |||
url: top.$.rootUrl + '/Changyang_zhdn/ods_zzbyqxwjysj/Form', | |||
width: 600, | |||
height: 400, | |||
callBack: function (id) { | |||
return top[id].acceptClick(refreshGirdData); | |||
} | |||
}); | |||
}); | |||
// 编辑 | |||
$('#lr_edit').on('click', function () { | |||
var keyValue = $('#gridtable').jfGridValue('ZZSXJYSJID'); | |||
if (learun.checkrow(keyValue)) { | |||
learun.layerForm({ | |||
id: 'form', | |||
title: '编辑', | |||
url: top.$.rootUrl + '/Changyang_zhdn/ods_zzbyqxwjysj/Form?keyValue=' + keyValue, | |||
width: 600, | |||
height: 400, | |||
callBack: function (id) { | |||
return top[id].acceptClick(refreshGirdData); | |||
} | |||
}); | |||
} | |||
}); | |||
// 删除 | |||
$('#lr_delete').on('click', function () { | |||
var keyValue = $('#gridtable').jfGridValue('ZZSXJYSJID'); | |||
if (learun.checkrow(keyValue)) { | |||
learun.layerConfirm('是否确认删除该项!', function (res) { | |||
if (res) { | |||
learun.deleteForm(top.$.rootUrl + '/Changyang_zhdn/ods_zzbyqxwjysj/DeleteForm', { keyValue: keyValue}, function () { | |||
refreshGirdData(); | |||
}); | |||
} | |||
}); | |||
} | |||
}); | |||
// 导入 | |||
$('#lr_import').on('click', function () { | |||
}); | |||
}, | |||
// 初始化列表 | |||
initGird: function () { | |||
$('#gridtable').lrAuthorizeJfGrid({ | |||
url: top.$.rootUrl + '/Changyang_zhdn/ods_zzbyqxwjysj/GetPageList', | |||
headData: [ | |||
{ label: "学校机构代码", name: "XXJGDM", width: 100, align: "left"}, | |||
{ label: "学校机构名称", name: "XXJGMC", width: 100, align: "left"}, | |||
{ label: "学号", name: "XH", width: 100, align: "left"}, | |||
{ label: "姓名", name: "XM", width: 100, align: "left"}, | |||
{ label: "专业名称", name: "ZYMC", width: 100, align: "left"}, | |||
{ label: "班级名称", name: "BJMC", width: 100, align: "left"}, | |||
{ label: "身份证号", name: "SFZH", width: 100, align: "left"}, | |||
{ label: "未就业类型", name: "WJYLX", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row, op,$cell) { | |||
learun.clientdata.getAsync('dataItem', { | |||
key: value, | |||
code: 'wjylxdm', | |||
callback: function (_data) { | |||
callback(_data.text); | |||
} | |||
}); | |||
}}, | |||
{ label: "数据采集时间", name: "SJCJSJ", width: 100, align: "left"}, | |||
], | |||
mainId:'ZZSXJYSJID', | |||
isPage: true | |||
}); | |||
page.search(); | |||
}, | |||
search: function (param) { | |||
param = param || {}; | |||
$('#gridtable').jfGridSet('reload',{ queryJson: JSON.stringify(param) }); | |||
} | |||
}; | |||
refreshGirdData = function () { | |||
$('#gridtable').jfGridSet('reload'); | |||
}; | |||
page.init(); | |||
} |
@@ -887,6 +887,7 @@ | |||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_zzbyqxsxsjController.cs" /> | |||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_zzbyqxjysjController.cs" /> | |||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_djhddydhsjController.cs" /> | |||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_zzbyqxwjysjController.cs" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\DropOutIndex.js" /> | |||
@@ -6994,6 +6995,10 @@ | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_djhddydhsj\Index.js" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_djhddydhsj\Form.cshtml" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_djhddydhsj\Form.js" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzbyqxwjysj\Index.cshtml" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzbyqxwjysj\Index.js" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzbyqxwjysj\Form.cshtml" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzbyqxwjysj\Form.js" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Folder Include="Areas\Changyang_zhdn\Controllers\" /> | |||
@@ -0,0 +1,29 @@ | |||
using Learun.Application.TwoDevelopment.Changyang_zhdn; | |||
using System.Data.Entity.ModelConfiguration; | |||
namespace Learun.Application.Mapping | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 | |||
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2022-11-10 10:28 | |||
/// 描 述:中职毕业去向【未就业】数据表 | |||
/// </summary> | |||
public class ODS_ZZBYQXWJYSJMap : EntityTypeConfiguration<ODS_ZZBYQXWJYSJEntity> | |||
{ | |||
public ODS_ZZBYQXWJYSJMap() | |||
{ | |||
#region 表、主键 | |||
//表 | |||
this.ToTable("ODS_ZZBYQXWJYSJ"); | |||
//主键 | |||
this.HasKey(t => t.ZZSXJYSJID); | |||
#endregion | |||
#region 配置关系 | |||
#endregion | |||
} | |||
} | |||
} | |||
@@ -646,6 +646,7 @@ | |||
<Compile Include="Changyang_zhdn\ODS_ZZBYQXSXSJMap.cs" /> | |||
<Compile Include="Changyang_zhdn\ODS_ZZBYQXJYSJMap.cs" /> | |||
<Compile Include="Changyang_zhdn\ODS_DJHDDYDHSJMap.cs" /> | |||
<Compile Include="Changyang_zhdn\ODS_ZZBYQXWJYSJMap.cs" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Learun.Application.Organization\Learun.Application.Organization.csproj"> | |||
@@ -0,0 +1,90 @@ | |||
using Learun.Util; | |||
using System; | |||
using System.ComponentModel.DataAnnotations.Schema; | |||
namespace Learun.Application.TwoDevelopment.Changyang_zhdn | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 | |||
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2022-11-10 10:28 | |||
/// 描 述:中职毕业去向【未就业】数据表 | |||
/// </summary> | |||
public class ODS_ZZBYQXWJYSJEntity | |||
{ | |||
#region 实体成员 | |||
/// <summary> | |||
/// ZZSXJYSJID | |||
/// </summary> | |||
[Column("ZZSXJYSJID")] | |||
public string ZZSXJYSJID { get; set; } | |||
/// <summary> | |||
/// XXJGDM | |||
/// </summary> | |||
[Column("XXJGDM")] | |||
public string XXJGDM { get; set; } | |||
/// <summary> | |||
/// XXJGMC | |||
/// </summary> | |||
[Column("XXJGMC")] | |||
public string XXJGMC { get; set; } | |||
/// <summary> | |||
/// XH | |||
/// </summary> | |||
[Column("XH")] | |||
public string XH { get; set; } | |||
/// <summary> | |||
/// XM | |||
/// </summary> | |||
[Column("XM")] | |||
public string XM { get; set; } | |||
/// <summary> | |||
/// ZYMC | |||
/// </summary> | |||
[Column("ZYMC")] | |||
public string ZYMC { get; set; } | |||
/// <summary> | |||
/// BJMC | |||
/// </summary> | |||
[Column("BJMC")] | |||
public string BJMC { get; set; } | |||
/// <summary> | |||
/// SFZH | |||
/// </summary> | |||
[Column("SFZH")] | |||
public string SFZH { get; set; } | |||
/// <summary> | |||
/// WJYLX | |||
/// </summary> | |||
[Column("WJYLX")] | |||
public string WJYLX { get; set; } | |||
/// <summary> | |||
/// SJCJSJ | |||
/// </summary> | |||
[Column("SJCJSJ")] | |||
public string SJCJSJ { get; set; } | |||
#endregion | |||
#region 扩展操作 | |||
/// <summary> | |||
/// 新增调用 | |||
/// </summary> | |||
public void Create() | |||
{ | |||
this.ZZSXJYSJID = Guid.NewGuid().ToString(); | |||
} | |||
/// <summary> | |||
/// 编辑调用 | |||
/// </summary> | |||
/// <param name="keyValue"></param> | |||
public void Modify(string keyValue) | |||
{ | |||
this.ZZSXJYSJID = keyValue; | |||
} | |||
#endregion | |||
#region 扩展字段 | |||
#endregion | |||
} | |||
} | |||
@@ -0,0 +1,125 @@ | |||
using Learun.Util; | |||
using System; | |||
using System.Data; | |||
using System.Collections.Generic; | |||
namespace Learun.Application.TwoDevelopment.Changyang_zhdn | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 | |||
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2022-11-10 10:28 | |||
/// 描 述:中职毕业去向【未就业】数据表 | |||
/// </summary> | |||
public class ods_zzbyqxwjysjBLL : ods_zzbyqxwjysjIBLL | |||
{ | |||
private ods_zzbyqxwjysjService ods_zzbyqxwjysjService = new ods_zzbyqxwjysjService(); | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// </summary> | |||
/// <param name="pagination">分页参数</param> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
public IEnumerable<ODS_ZZBYQXWJYSJEntity> GetPageList(Pagination pagination, string queryJson) | |||
{ | |||
try | |||
{ | |||
return ods_zzbyqxwjysjService.GetPageList(pagination, queryJson); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 获取ODS_ZZBYQXWJYSJ表实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <returns></returns> | |||
public ODS_ZZBYQXWJYSJEntity GetODS_ZZBYQXWJYSJEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
return ods_zzbyqxwjysjService.GetODS_ZZBYQXWJYSJEntity(keyValue); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
#endregion | |||
#region 提交数据 | |||
/// <summary> | |||
/// 删除实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
public void DeleteEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
ods_zzbyqxwjysjService.DeleteEntity(keyValue); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 保存实体数据(新增、修改) | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <param name="entity">实体</param> | |||
/// <returns></returns> | |||
public void SaveEntity(string keyValue, ODS_ZZBYQXWJYSJEntity entity) | |||
{ | |||
try | |||
{ | |||
ods_zzbyqxwjysjService.SaveEntity(keyValue, entity); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
#endregion | |||
} | |||
} |
@@ -0,0 +1,48 @@ | |||
using Learun.Util; | |||
using System.Data; | |||
using System.Collections.Generic; | |||
namespace Learun.Application.TwoDevelopment.Changyang_zhdn | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 | |||
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2022-11-10 10:28 | |||
/// 描 述:中职毕业去向【未就业】数据表 | |||
/// </summary> | |||
public interface ods_zzbyqxwjysjIBLL | |||
{ | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// </summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
IEnumerable<ODS_ZZBYQXWJYSJEntity> GetPageList(Pagination pagination, string queryJson); | |||
/// <summary> | |||
/// 获取ODS_ZZBYQXWJYSJ表实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <returns></returns> | |||
ODS_ZZBYQXWJYSJEntity GetODS_ZZBYQXWJYSJEntity(string keyValue); | |||
#endregion | |||
#region 提交数据 | |||
/// <summary> | |||
/// 删除实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
void DeleteEntity(string keyValue); | |||
/// <summary> | |||
/// 保存实体数据(新增、修改) | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <param name="entity">实体</param> | |||
void SaveEntity(string keyValue, ODS_ZZBYQXWJYSJEntity entity); | |||
#endregion | |||
} | |||
} |
@@ -0,0 +1,153 @@ | |||
using Dapper; | |||
using Learun.DataBase.Repository; | |||
using Learun.Util; | |||
using System; | |||
using System.Collections.Generic; | |||
using System.Data; | |||
using System.Text; | |||
namespace Learun.Application.TwoDevelopment.Changyang_zhdn | |||
{ | |||
/// <summary> | |||
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 | |||
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
/// 创 建:超级管理员 | |||
/// 日 期:2022-11-10 10:28 | |||
/// 描 述:中职毕业去向【未就业】数据表 | |||
/// </summary> | |||
public class ods_zzbyqxwjysjService : RepositoryFactory | |||
{ | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// </summary> | |||
/// <param name="pagination">查询参数</param> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
public IEnumerable<ODS_ZZBYQXWJYSJEntity> GetPageList(Pagination pagination, string queryJson) | |||
{ | |||
try | |||
{ | |||
var strSql = new StringBuilder(); | |||
strSql.Append("SELECT "); | |||
strSql.Append(@" | |||
t.ZZSXJYSJID, | |||
t.XXJGDM, | |||
t.XXJGMC, | |||
t.XH, | |||
t.XM, | |||
t.ZYMC, | |||
t.BJMC, | |||
t.SFZH, | |||
t.WJYLX, | |||
t.SJCJSJ | |||
"); | |||
strSql.Append(" FROM ODS_ZZBYQXWJYSJ t "); | |||
strSql.Append(" WHERE 1=1 "); | |||
var queryParam = queryJson.ToJObject(); | |||
// 虚拟参数 | |||
var dp = new DynamicParameters(new { }); | |||
return this.BaseRepository("changyang").FindList<ODS_ZZBYQXWJYSJEntity>(strSql.ToString(),dp, pagination); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 获取ODS_ZZBYQXWJYSJ表实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <returns></returns> | |||
public ODS_ZZBYQXWJYSJEntity GetODS_ZZBYQXWJYSJEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
return this.BaseRepository("changyang").FindEntity<ODS_ZZBYQXWJYSJEntity>(keyValue); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
#endregion | |||
#region 提交数据 | |||
/// <summary> | |||
/// 删除实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
public void DeleteEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
this.BaseRepository("changyang").Delete<ODS_ZZBYQXWJYSJEntity>(t=>t.ZZSXJYSJID == keyValue); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 保存实体数据(新增、修改) | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <param name="entity">实体</param> | |||
public void SaveEntity(string keyValue, ODS_ZZBYQXWJYSJEntity entity) | |||
{ | |||
try | |||
{ | |||
if (!string.IsNullOrEmpty(keyValue)) | |||
{ | |||
entity.Modify(keyValue); | |||
this.BaseRepository("changyang").Update(entity); | |||
} | |||
else | |||
{ | |||
entity.Create(); | |||
this.BaseRepository("changyang").Insert(entity); | |||
} | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
#endregion | |||
} | |||
} |
@@ -2007,6 +2007,10 @@ | |||
<Compile Include="Changyang_zhdn\ods_djhddydhsj\ods_djhddydhsjService.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_djhddydhsj\ods_djhddydhsjBLL.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_djhddydhsj\ods_djhddydhsjIBLL.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_zzbyqxwjysj\ODS_ZZBYQXWJYSJEntity.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_zzbyqxwjysj\ods_zzbyqxwjysjService.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_zzbyqxwjysj\ods_zzbyqxwjysjBLL.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_zzbyqxwjysj\ods_zzbyqxwjysjIBLL.cs" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Learun.Application.Organization\Learun.Application.Organization.csproj"> | |||