@@ -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 11:55 | |||
/// 描 述:德育活动数据表 | |||
/// </summary> | |||
public class ods_dyhdsjController : MvcControllerBase | |||
{ | |||
private ods_dyhdsjIBLL ods_dyhdsjIBLL = new ods_dyhdsjBLL(); | |||
#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_dyhdsjIBLL.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_DYHDSJData = ods_dyhdsjIBLL.GetODS_DYHDSJEntity( keyValue ); | |||
var jsonData = new { | |||
ODS_DYHDSJ = ODS_DYHDSJData, | |||
}; | |||
return Success(jsonData); | |||
} | |||
#endregion | |||
#region 提交数据 | |||
/// <summary> | |||
/// 删除实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <returns></returns> | |||
[HttpPost] | |||
[AjaxOnly] | |||
public ActionResult DeleteForm(string keyValue) | |||
{ | |||
ods_dyhdsjIBLL.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_DYHDSJEntity entity = strEntity.ToObject<ODS_DYHDSJEntity>(); | |||
ods_dyhdsjIBLL.SaveEntity(keyValue,entity); | |||
if (string.IsNullOrEmpty(keyValue)) | |||
{ | |||
} | |||
return Success("保存成功!"); | |||
} | |||
#endregion | |||
} | |||
} |
@@ -0,0 +1,75 @@ | |||
@{ | |||
ViewBag.Title = "德育活动数据表"; | |||
Layout = "~/Views/Shared/_Form.cshtml"; | |||
} | |||
<div class="lr-form-wrap" id="form"> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">学校机构代码<font face="宋体">*</font></div> | |||
<input id="XXJGDM" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">学校机构名称<font face="宋体">*</font></div> | |||
<input id="XXJGMC" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">活动名称<font face="宋体">*</font></div> | |||
<input id="HDMC" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">所属专题</div> | |||
<input id="SSZT" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">活动版块</div> | |||
<input id="HDBK" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">活动主题</div> | |||
<div id="HDZT" ></div> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">活动类型</div> | |||
<div id="HDLX" ></div> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">活动内容</div> | |||
<input id="HDNR" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">主办单位<font face="宋体">*</font></div> | |||
<input id="ZBDW" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">主办单位级别<font face="宋体">*</font></div> | |||
<div id="ZBDWJB" isvalid="yes" checkexpession="NotNull" ></div> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">活动开始日期<font face="宋体">*</font></div> | |||
<input id="HDKSRQ" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">活动结束日期<font face="宋体">*</font></div> | |||
<input id="HDJSRQ" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">校方负责人</div> | |||
<input id="XFFZR" type="text" class="form-control" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">参与班级数<font face="宋体">*</font></div> | |||
<input id="CYBJS" type="text" class="form-control" isvalid="yes" checkexpession="Num" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">参与教师数<font face="宋体">*</font></div> | |||
<input id="CYJSS" type="text" class="form-control" isvalid="yes" checkexpession="Num" /> | |||
</div> | |||
<div class="col-xs-6 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">参与学生数<font face="宋体">*</font></div> | |||
<input id="CYXSS" type="text" class="form-control" isvalid="yes" checkexpession="Num" /> | |||
</div> | |||
<div class="col-xs-12 lr-form-item" data-table="ODS_DYHDSJ" > | |||
<div class="lr-form-item-title">数据采集时间<font face="宋体">*</font></div> | |||
<input id="SJCJSJ" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" /> | |||
</div> | |||
</div> | |||
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_dyhdsj/Form.js") |
@@ -0,0 +1,53 @@ | |||
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) | |||
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
* 创建人:超级管理员 | |||
* 日 期:2022-11-10 11:55 | |||
* 描 述:德育活动数据表 | |||
*/ | |||
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 () { | |||
$('#HDZT').lrDataItemSelect({ code: 'dyhdztdm' }); | |||
$('#HDLX').lrDataItemSelect({ code: 'dyhdlxdm' }); | |||
$('#ZBDWJB').lrDataItemSelect({ code: 'zbdwjbdm' }); | |||
}, | |||
initData: function () { | |||
if (!!keyValue) { | |||
$.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_dyhdsj/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_dyhdsj/SaveForm?keyValue=' + keyValue, postData, function (res) { | |||
// 保存成功后才回调 | |||
if (!!callBack) { | |||
callBack(); | |||
} | |||
}); | |||
}; | |||
page.init(); | |||
} |
@@ -0,0 +1,26 @@ | |||
@{ | |||
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> | |||
</div> | |||
<div class="lr-layout-body" id="gridtable"></div> | |||
</div> | |||
</div> | |||
</div> | |||
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_dyhdsj/Index.js") |
@@ -0,0 +1,127 @@ | |||
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) | |||
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||
* 创建人:超级管理员 | |||
* 日 期:2022-11-10 11:55 | |||
* 描 述:德育活动数据表 | |||
*/ | |||
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_dyhdsj/Form', | |||
width: 600, | |||
height: 400, | |||
callBack: function (id) { | |||
return top[id].acceptClick(refreshGirdData); | |||
} | |||
}); | |||
}); | |||
// 编辑 | |||
$('#lr_edit').on('click', function () { | |||
var keyValue = $('#gridtable').jfGridValue('GZZYQKSJID'); | |||
if (learun.checkrow(keyValue)) { | |||
learun.layerForm({ | |||
id: 'form', | |||
title: '编辑', | |||
url: top.$.rootUrl + '/Changyang_zhdn/ods_dyhdsj/Form?keyValue=' + keyValue, | |||
width: 600, | |||
height: 400, | |||
callBack: function (id) { | |||
return top[id].acceptClick(refreshGirdData); | |||
} | |||
}); | |||
} | |||
}); | |||
// 删除 | |||
$('#lr_delete').on('click', function () { | |||
var keyValue = $('#gridtable').jfGridValue('GZZYQKSJID'); | |||
if (learun.checkrow(keyValue)) { | |||
learun.layerConfirm('是否确认删除该项!', function (res) { | |||
if (res) { | |||
learun.deleteForm(top.$.rootUrl + '/Changyang_zhdn/ods_dyhdsj/DeleteForm', { keyValue: keyValue}, function () { | |||
refreshGirdData(); | |||
}); | |||
} | |||
}); | |||
} | |||
}); | |||
}, | |||
// 初始化列表 | |||
initGird: function () { | |||
$('#gridtable').lrAuthorizeJfGrid({ | |||
url: top.$.rootUrl + '/Changyang_zhdn/ods_dyhdsj/GetPageList', | |||
headData: [ | |||
{ label: "学校机构代码", name: "XXJGDM", width: 100, align: "left"}, | |||
{ label: "学校机构名称", name: "XXJGMC", width: 100, align: "left"}, | |||
{ label: "活动名称", name: "HDMC", width: 100, align: "left"}, | |||
{ label: "所属专题", name: "SSZT", width: 100, align: "left"}, | |||
{ label: "活动版块", name: "HDBK", width: 100, align: "left"}, | |||
{ label: "活动主题", name: "HDZT", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row, op,$cell) { | |||
learun.clientdata.getAsync('dataItem', { | |||
key: value, | |||
code: 'dyhdztdm', | |||
callback: function (_data) { | |||
callback(_data.text); | |||
} | |||
}); | |||
}}, | |||
{ label: "活动类型", name: "HDLX", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row, op,$cell) { | |||
learun.clientdata.getAsync('dataItem', { | |||
key: value, | |||
code: 'dyhdlxdm', | |||
callback: function (_data) { | |||
callback(_data.text); | |||
} | |||
}); | |||
}}, | |||
{ label: "活动内容", name: "HDNR", width: 100, align: "left"}, | |||
{ label: "主办单位", name: "ZBDW", width: 100, align: "left"}, | |||
{ label: "主办单位级别", name: "ZBDWJB", width: 100, align: "left", | |||
formatterAsync: function (callback, value, row, op,$cell) { | |||
learun.clientdata.getAsync('dataItem', { | |||
key: value, | |||
code: 'zbdwjbdm', | |||
callback: function (_data) { | |||
callback(_data.text); | |||
} | |||
}); | |||
}}, | |||
{ label: "活动开始日期", name: "HDKSRQ", width: 100, align: "left"}, | |||
{ label: "活动结束日期", name: "HDJSRQ", width: 100, align: "left"}, | |||
{ label: "校方负责人", name: "XFFZR", width: 100, align: "left"}, | |||
{ label: "参与班级数", name: "CYBJS", width: 100, align: "left"}, | |||
{ label: "参与教师数", name: "CYJSS", width: 100, align: "left"}, | |||
{ label: "参与学生数", name: "CYXSS", width: 100, align: "left"}, | |||
{ label: "数据采集时间", name: "SJCJSJ", width: 100, align: "left"}, | |||
], | |||
mainId:'GZZYQKSJID', | |||
isPage: true | |||
}); | |||
page.search(); | |||
}, | |||
search: function (param) { | |||
param = param || {}; | |||
$('#gridtable').jfGridSet('reload',{ queryJson: JSON.stringify(param) }); | |||
} | |||
}; | |||
refreshGirdData = function () { | |||
$('#gridtable').jfGridSet('reload'); | |||
}; | |||
page.init(); | |||
} |
@@ -894,6 +894,7 @@ | |||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_xwsxjdsjController.cs" /> | |||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_zzcjsthdsjController.cs" /> | |||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_jcxysjController.cs" /> | |||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_dyhdsjController.cs" /> | |||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_zzsxjcsjController.cs" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
@@ -7030,6 +7031,10 @@ | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_jcxysj\Index.js" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_jcxysj\Form.cshtml" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_jcxysj\Form.js" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_dyhdsj\Index.cshtml" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_dyhdsj\Index.js" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_dyhdsj\Form.cshtml" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_dyhdsj\Form.js" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzsxjcsj\Index.cshtml" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzsxjcsj\Index.js" /> | |||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzsxjcsj\Form.cshtml" /> | |||
@@ -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 11:55 | |||
/// 描 述:德育活动数据表 | |||
/// </summary> | |||
public class ODS_DYHDSJMap : EntityTypeConfiguration<ODS_DYHDSJEntity> | |||
{ | |||
public ODS_DYHDSJMap() | |||
{ | |||
#region 表、主键 | |||
//表 | |||
this.ToTable("ODS_DYHDSJ"); | |||
//主键 | |||
this.HasKey(t => t.GZZYQKSJID); | |||
#endregion | |||
#region 配置关系 | |||
#endregion | |||
} | |||
} | |||
} | |||
@@ -653,6 +653,7 @@ | |||
<Compile Include="Changyang_zhdn\ODS_XWSXJDSJMap.cs" /> | |||
<Compile Include="Changyang_zhdn\ODS_ZZCJSTHDSJMap.cs" /> | |||
<Compile Include="Changyang_zhdn\ODS_JCXYSJMap.cs" /> | |||
<Compile Include="Changyang_zhdn\ODS_DYHDSJMap.cs" /> | |||
<Compile Include="Changyang_zhdn\ODS_ZZSXJCSJMap.cs" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
@@ -0,0 +1,130 @@ | |||
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 11:55 | |||
/// 描 述:德育活动数据表 | |||
/// </summary> | |||
public class ODS_DYHDSJEntity | |||
{ | |||
#region 实体成员 | |||
/// <summary> | |||
/// 主键数据唯一性标识 | |||
/// </summary> | |||
[Column("GZZYQKSJID")] | |||
public string GZZYQKSJID { get; set; } | |||
/// <summary> | |||
/// 学校机构代码 | |||
/// </summary> | |||
[Column("XXJGDM")] | |||
public string XXJGDM { get; set; } | |||
/// <summary> | |||
/// 学校机构名称 | |||
/// </summary> | |||
[Column("XXJGMC")] | |||
public string XXJGMC { get; set; } | |||
/// <summary> | |||
/// 活动名称 | |||
/// </summary> | |||
[Column("HDMC")] | |||
public string HDMC { get; set; } | |||
/// <summary> | |||
/// 所属专题 | |||
/// </summary> | |||
[Column("SSZT")] | |||
public string SSZT { get; set; } | |||
/// <summary> | |||
/// 活动版块 | |||
/// </summary> | |||
[Column("HDBK")] | |||
public string HDBK { get; set; } | |||
/// <summary> | |||
/// 活动主题 | |||
/// </summary> | |||
[Column("HDZT")] | |||
public string HDZT { get; set; } | |||
/// <summary> | |||
/// 活动类型 | |||
/// </summary> | |||
[Column("HDLX")] | |||
public string HDLX { get; set; } | |||
/// <summary> | |||
/// 活动内容 | |||
/// </summary> | |||
[Column("HDNR")] | |||
public string HDNR { get; set; } | |||
/// <summary> | |||
/// 主办单位 | |||
/// </summary> | |||
[Column("ZBDW")] | |||
public string ZBDW { get; set; } | |||
/// <summary> | |||
/// 主办单位级别 | |||
/// </summary> | |||
[Column("ZBDWJB")] | |||
public string ZBDWJB { get; set; } | |||
/// <summary> | |||
/// 活动开始日期 | |||
/// </summary> | |||
[Column("HDKSRQ")] | |||
public string HDKSRQ { get; set; } | |||
/// <summary> | |||
/// 活动结束日期 | |||
/// </summary> | |||
[Column("HDJSRQ")] | |||
public string HDJSRQ { get; set; } | |||
/// <summary> | |||
/// 校方负责人 | |||
/// </summary> | |||
[Column("XFFZR")] | |||
public string XFFZR { get; set; } | |||
/// <summary> | |||
/// 参与班级数 | |||
/// </summary> | |||
[Column("CYBJS")] | |||
public string CYBJS { get; set; } | |||
/// <summary> | |||
/// 参与教师数 | |||
/// </summary> | |||
[Column("CYJSS")] | |||
public string CYJSS { get; set; } | |||
/// <summary> | |||
/// 参与学生数 | |||
/// </summary> | |||
[Column("CYXSS")] | |||
public string CYXSS { get; set; } | |||
/// <summary> | |||
/// 数据采集时间 | |||
/// </summary> | |||
[Column("SJCJSJ")] | |||
public string SJCJSJ { get; set; } | |||
#endregion | |||
#region 扩展操作 | |||
/// <summary> | |||
/// 新增调用 | |||
/// </summary> | |||
public void Create() | |||
{ | |||
this.GZZYQKSJID = Guid.NewGuid().ToString(); | |||
} | |||
/// <summary> | |||
/// 编辑调用 | |||
/// </summary> | |||
/// <param name="keyValue"></param> | |||
public void Modify(string keyValue) | |||
{ | |||
this.GZZYQKSJID = 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 11:55 | |||
/// 描 述:德育活动数据表 | |||
/// </summary> | |||
public class ods_dyhdsjBLL : ods_dyhdsjIBLL | |||
{ | |||
private ods_dyhdsjService ods_dyhdsjService = new ods_dyhdsjService(); | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// </summary> | |||
/// <param name="pagination">分页参数</param> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
public IEnumerable<ODS_DYHDSJEntity> GetPageList(Pagination pagination, string queryJson) | |||
{ | |||
try | |||
{ | |||
return ods_dyhdsjService.GetPageList(pagination, queryJson); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowBusinessException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 获取ODS_DYHDSJ表实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <returns></returns> | |||
public ODS_DYHDSJEntity GetODS_DYHDSJEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
return ods_dyhdsjService.GetODS_DYHDSJEntity(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_dyhdsjService.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_DYHDSJEntity entity) | |||
{ | |||
try | |||
{ | |||
ods_dyhdsjService.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 11:55 | |||
/// 描 述:德育活动数据表 | |||
/// </summary> | |||
public interface ods_dyhdsjIBLL | |||
{ | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// </summary> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
IEnumerable<ODS_DYHDSJEntity> GetPageList(Pagination pagination, string queryJson); | |||
/// <summary> | |||
/// 获取ODS_DYHDSJ表实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <returns></returns> | |||
ODS_DYHDSJEntity GetODS_DYHDSJEntity(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_DYHDSJEntity entity); | |||
#endregion | |||
} | |||
} |
@@ -0,0 +1,161 @@ | |||
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 11:55 | |||
/// 描 述:德育活动数据表 | |||
/// </summary> | |||
public class ods_dyhdsjService : RepositoryFactory | |||
{ | |||
#region 获取数据 | |||
/// <summary> | |||
/// 获取页面显示列表数据 | |||
/// </summary> | |||
/// <param name="pagination">查询参数</param> | |||
/// <param name="queryJson">查询参数</param> | |||
/// <returns></returns> | |||
public IEnumerable<ODS_DYHDSJEntity> GetPageList(Pagination pagination, string queryJson) | |||
{ | |||
try | |||
{ | |||
var strSql = new StringBuilder(); | |||
strSql.Append("SELECT "); | |||
strSql.Append(@" | |||
t.GZZYQKSJID, | |||
t.XXJGDM, | |||
t.XXJGMC, | |||
t.HDMC, | |||
t.SSZT, | |||
t.HDBK, | |||
t.HDZT, | |||
t.HDLX, | |||
t.HDNR, | |||
t.ZBDW, | |||
t.ZBDWJB, | |||
t.HDKSRQ, | |||
t.HDJSRQ, | |||
t.XFFZR, | |||
t.CYBJS, | |||
t.CYJSS, | |||
t.CYXSS, | |||
t.SJCJSJ | |||
"); | |||
strSql.Append(" FROM ODS_DYHDSJ t "); | |||
strSql.Append(" WHERE 1=1 "); | |||
var queryParam = queryJson.ToJObject(); | |||
// 虚拟参数 | |||
var dp = new DynamicParameters(new { }); | |||
return this.BaseRepository("changyang").FindList<ODS_DYHDSJEntity>(strSql.ToString(),dp, pagination); | |||
} | |||
catch (Exception ex) | |||
{ | |||
if (ex is ExceptionEx) | |||
{ | |||
throw; | |||
} | |||
else | |||
{ | |||
throw ExceptionEx.ThrowServiceException(ex); | |||
} | |||
} | |||
} | |||
/// <summary> | |||
/// 获取ODS_DYHDSJ表实体数据 | |||
/// </summary> | |||
/// <param name="keyValue">主键</param> | |||
/// <returns></returns> | |||
public ODS_DYHDSJEntity GetODS_DYHDSJEntity(string keyValue) | |||
{ | |||
try | |||
{ | |||
return this.BaseRepository("changyang").FindEntity<ODS_DYHDSJEntity>(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_DYHDSJEntity>(t=>t.GZZYQKSJID == 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_DYHDSJEntity 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 | |||
} | |||
} |
@@ -2035,6 +2035,10 @@ | |||
<Compile Include="Changyang_zhdn\ods_jcxysj\ods_jcxysjService.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_jcxysj\ods_jcxysjBLL.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_jcxysj\ods_jcxysjIBLL.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_dyhdsj\ODS_DYHDSJEntity.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_dyhdsj\ods_dyhdsjService.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_dyhdsj\ods_dyhdsjBLL.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_dyhdsj\ods_dyhdsjIBLL.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_zzsxjcsj\ODS_ZZSXJCSJEntity.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_zzsxjcsj\ods_zzsxjcsjService.cs" /> | |||
<Compile Include="Changyang_zhdn\ods_zzsxjcsj\ods_zzsxjcsjBLL.cs" /> | |||