diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_cjsxhdsjController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_cjsxhdsjController.cs
new file mode 100644
index 000000000..b71d559ca
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_cjsxhdsjController.cs
@@ -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
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:35
+ /// 描 述:参加赛事活动数据表
+ ///
+ public class ods_cjsxhdsjController : MvcControllerBase
+ {
+ private ods_cjsxhdsjIBLL ods_cjsxhdsjIBLL = new ods_cjsxhdsjBLL();
+
+ #region 视图功能
+
+ ///
+ /// 主页面
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Index()
+ {
+ return View();
+ }
+ ///
+ /// 表单页
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Form()
+ {
+ return View();
+ }
+ #endregion
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetPageList(string pagination, string queryJson)
+ {
+ Pagination paginationobj = pagination.ToObject();
+ var data = ods_cjsxhdsjIBLL.GetPageList(paginationobj, queryJson);
+ var jsonData = new
+ {
+ rows = data,
+ total = paginationobj.total,
+ page = paginationobj.page,
+ records = paginationobj.records
+ };
+ return Success(jsonData);
+ }
+ ///
+ /// 获取表单数据
+ ///
+ /// 主键
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetFormData(string keyValue)
+ {
+ var ODS_CJSXHDSJData = ods_cjsxhdsjIBLL.GetODS_CJSXHDSJEntity( keyValue );
+ var jsonData = new {
+ ODS_CJSXHDSJ = ODS_CJSXHDSJData,
+ };
+ return Success(jsonData);
+ }
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult DeleteForm(string keyValue)
+ {
+ ods_cjsxhdsjIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ [HttpPost]
+ [ValidateAntiForgeryToken]
+ [AjaxOnly]
+ public ActionResult SaveForm(string keyValue, string strEntity)
+ {
+ ODS_CJSXHDSJEntity entity = strEntity.ToObject();
+ ods_cjsxhdsjIBLL.SaveEntity(keyValue,entity);
+ if (string.IsNullOrEmpty(keyValue))
+ {
+ }
+ return Success("保存成功!");
+ }
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddydhsjController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddydhsjController.cs
index 97779f455..72eb43fd7 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddydhsjController.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddydhsjController.cs
@@ -10,7 +10,7 @@ namespace Learun.Application.Web.Areas.Changyang_zhdn.Controllers
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
- /// 日 期:2022-11-09 16:15
+ /// 日 期:2022-11-09 16:18
/// 描 述:党建活动党员大会数据表
///
public class ods_djhddydhsjController : MvcControllerBase
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddyrcsjController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddyrcsjController.cs
new file mode 100644
index 000000000..283e7083a
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddyrcsjController.cs
@@ -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
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:12
+ /// 描 述:党建活动党员日常数据表
+ ///
+ public class ods_djhddyrcsjController : MvcControllerBase
+ {
+ private ods_djhddyrcsjIBLL ods_djhddyrcsjIBLL = new ods_djhddyrcsjBLL();
+
+ #region 视图功能
+
+ ///
+ /// 主页面
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Index()
+ {
+ return View();
+ }
+ ///
+ /// 表单页
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Form()
+ {
+ return View();
+ }
+ #endregion
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetPageList(string pagination, string queryJson)
+ {
+ Pagination paginationobj = pagination.ToObject();
+ var data = ods_djhddyrcsjIBLL.GetPageList(paginationobj, queryJson);
+ var jsonData = new
+ {
+ rows = data,
+ total = paginationobj.total,
+ page = paginationobj.page,
+ records = paginationobj.records
+ };
+ return Success(jsonData);
+ }
+ ///
+ /// 获取表单数据
+ ///
+ /// 主键
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetFormData(string keyValue)
+ {
+ var ODS_DJHDDYRCSJData = ods_djhddyrcsjIBLL.GetODS_DJHDDYRCSJEntity( keyValue );
+ var jsonData = new {
+ ODS_DJHDDYRCSJ = ODS_DJHDDYRCSJData,
+ };
+ return Success(jsonData);
+ }
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult DeleteForm(string keyValue)
+ {
+ ods_djhddyrcsjIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ [HttpPost]
+ [ValidateAntiForgeryToken]
+ [AjaxOnly]
+ public ActionResult SaveForm(string keyValue, string strEntity)
+ {
+ ODS_DJHDDYRCSJEntity entity = strEntity.ToObject();
+ ods_djhddyrcsjIBLL.SaveEntity(keyValue,entity);
+ if (string.IsNullOrEmpty(keyValue))
+ {
+ }
+ return Success("保存成功!");
+ }
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddyztdrsjController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddyztdrsjController.cs
new file mode 100644
index 000000000..af2bfae22
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddyztdrsjController.cs
@@ -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
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:24
+ /// 描 述:党建活动党员主题党日数据表
+ ///
+ public class ods_djhddyztdrsjController : MvcControllerBase
+ {
+ private ods_djhddyztdrsjIBLL ods_djhddyztdrsjIBLL = new ods_djhddyztdrsjBLL();
+
+ #region 视图功能
+
+ ///
+ /// 主页面
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Index()
+ {
+ return View();
+ }
+ ///
+ /// 表单页
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Form()
+ {
+ return View();
+ }
+ #endregion
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetPageList(string pagination, string queryJson)
+ {
+ Pagination paginationobj = pagination.ToObject();
+ var data = ods_djhddyztdrsjIBLL.GetPageList(paginationobj, queryJson);
+ var jsonData = new
+ {
+ rows = data,
+ total = paginationobj.total,
+ page = paginationobj.page,
+ records = paginationobj.records
+ };
+ return Success(jsonData);
+ }
+ ///
+ /// 获取表单数据
+ ///
+ /// 主键
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetFormData(string keyValue)
+ {
+ var ODS_DJHDDYZTDRSJData = ods_djhddyztdrsjIBLL.GetODS_DJHDDYZTDRSJEntity( keyValue );
+ var jsonData = new {
+ ODS_DJHDDYZTDRSJ = ODS_DJHDDYZTDRSJData,
+ };
+ return Success(jsonData);
+ }
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult DeleteForm(string keyValue)
+ {
+ ods_djhddyztdrsjIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ [HttpPost]
+ [ValidateAntiForgeryToken]
+ [AjaxOnly]
+ public ActionResult SaveForm(string keyValue, string strEntity)
+ {
+ ODS_DJHDDYZTDRSJEntity entity = strEntity.ToObject();
+ ods_djhddyztdrsjIBLL.SaveEntity(keyValue,entity);
+ if (string.IsNullOrEmpty(keyValue))
+ {
+ }
+ return Success("保存成功!");
+ }
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Form.cshtml
new file mode 100644
index 000000000..e74976c93
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Form.cshtml
@@ -0,0 +1,63 @@
+@{
+ ViewBag.Title = "参加赛事活动数据表";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Form.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Form.js
new file mode 100644
index 000000000..a7c75aa02
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Form.js
@@ -0,0 +1,51 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-10 11:35
+ * 描 述:参加赛事活动数据表
+ */
+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 () {
+ $('#ZBDWJB').lrDataItemSelect({ code: 'zbdwjbdm' });
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_cjsxhdsj/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_cjsxhdsj/SaveForm?keyValue=' + keyValue, postData, function (res) {
+ // 保存成功后才回调
+ if (!!callBack) {
+ callBack();
+ }
+ });
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Index.cshtml
new file mode 100644
index 000000000..3f00e2072
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Index.cshtml
@@ -0,0 +1,26 @@
+@{
+ ViewBag.Title = "参加赛事活动数据表";
+ Layout = "~/Views/Shared/_Index.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Index.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Index.js
new file mode 100644
index 000000000..dba87d129
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_cjsxhdsj/Index.js
@@ -0,0 +1,106 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-10 11:35
+ * 描 述:参加赛事活动数据表
+ */
+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_cjsxhdsj/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_cjsxhdsj/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_cjsxhdsj/DeleteForm', { keyValue: keyValue}, function () {
+ refreshGirdData();
+ });
+ }
+ });
+ }
+ });
+ },
+ // 初始化列表
+ initGird: function () {
+ $('#gridtable').lrAuthorizeJfGrid({
+ url: top.$.rootUrl + '/Changyang_zhdn/ods_cjsxhdsj/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: "HDZT", width: 100, align: "left"},
+ { label: "活动形式", name: "HDXS", width: 100, align: "left"},
+ { 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: "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();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddydhsj/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddydhsj/Form.js
index 23fb7e5e2..d3e4d1526 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddydhsj/Form.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddydhsj/Form.js
@@ -1,7 +1,7 @@
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
* 创建人:超级管理员
- * 日 期:2022-11-09 16:15
+ * 日 期:2022-11-09 16:18
* 描 述:党建活动党员大会数据表
*/
var acceptClick;
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddydhsj/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddydhsj/Index.js
index 879f52a7c..8a0ae227b 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddydhsj/Index.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddydhsj/Index.js
@@ -1,7 +1,7 @@
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
* 创建人:超级管理员
- * 日 期:2022-11-09 16:15
+ * 日 期:2022-11-09 16:18
* 描 述:党建活动党员大会数据表
*/
var refreshGirdData;
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Form.cshtml
new file mode 100644
index 000000000..be618ddc4
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Form.cshtml
@@ -0,0 +1,47 @@
+@{
+ ViewBag.Title = "党建活动党员日常数据表";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Form.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Form.js
new file mode 100644
index 000000000..7904530c4
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Form.js
@@ -0,0 +1,50 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-10 11:12
+ * 描 述:党建活动党员日常数据表
+ */
+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 () {
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_djhddyrcsj/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_djhddyrcsj/SaveForm?keyValue=' + keyValue, postData, function (res) {
+ // 保存成功后才回调
+ if (!!callBack) {
+ callBack();
+ }
+ });
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Index.cshtml
new file mode 100644
index 000000000..45e8be500
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Index.cshtml
@@ -0,0 +1,26 @@
+@{
+ ViewBag.Title = "党建活动党员日常数据表";
+ Layout = "~/Views/Shared/_Index.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Index.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Index.js
new file mode 100644
index 000000000..b9a917f8b
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyrcsj/Index.js
@@ -0,0 +1,93 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-10 11:12
+ * 描 述:党建活动党员日常数据表
+ */
+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_djhddyrcsj/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_djhddyrcsj/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_djhddyrcsj/DeleteForm', { keyValue: keyValue}, function () {
+ refreshGirdData();
+ });
+ }
+ });
+ }
+ });
+ },
+ // 初始化列表
+ initGird: function () {
+ $('#gridtable').lrAuthorizeJfGrid({
+ url: top.$.rootUrl + '/Changyang_zhdn/ods_djhddyrcsj/GetPageList',
+ headData: [
+ { label: "学校机构代码", name: "XXJGDM", width: 100, align: "left"},
+ { label: "学校机构名称", name: "XXJGMC", width: 100, align: "left"},
+ { label: "党组织名称", name: "DZZMC", width: 100, align: "left"},
+ { label: "党组织编号", name: "DZZBH", width: 100, align: "left"},
+ { label: "活动地点", name: "HDDD", width: 100, align: "left"},
+ { label: "活动内容", name: "HDNR", width: 100, align: "left"},
+ { label: "活动开始时间", name: "HDKSSJ", width: 100, align: "left"},
+ { label: "活动结束时间", name: "HDJSSJ", width: 100, align: "left"},
+ { label: "参与人数", name: "CYRS", 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();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Form.cshtml
new file mode 100644
index 000000000..23a094b40
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Form.cshtml
@@ -0,0 +1,47 @@
+@{
+ ViewBag.Title = "党建活动党员主题党日数据表";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Form.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Form.js
new file mode 100644
index 000000000..ee3ed7571
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Form.js
@@ -0,0 +1,51 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-10 11:24
+ * 描 述:党建活动党员主题党日数据表
+ */
+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 () {
+ $('#HDNR').lrDataItemSelect({ code: 'ztdrhdnrdm' });
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_djhddyztdrsj/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_djhddyztdrsj/SaveForm?keyValue=' + keyValue, postData, function (res) {
+ // 保存成功后才回调
+ if (!!callBack) {
+ callBack();
+ }
+ });
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Index.cshtml
new file mode 100644
index 000000000..24af32ff3
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Index.cshtml
@@ -0,0 +1,26 @@
+@{
+ ViewBag.Title = "党建活动党员主题党日数据表";
+ Layout = "~/Views/Shared/_Index.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Index.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Index.js
new file mode 100644
index 000000000..182790071
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddyztdrsj/Index.js
@@ -0,0 +1,102 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-10 11:24
+ * 描 述:党建活动党员主题党日数据表
+ */
+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_djhddyztdrsj/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_djhddyztdrsj/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_djhddyztdrsj/DeleteForm', { keyValue: keyValue}, function () {
+ refreshGirdData();
+ });
+ }
+ });
+ }
+ });
+ },
+ // 初始化列表
+ initGird: function () {
+ $('#gridtable').lrAuthorizeJfGrid({
+ url: top.$.rootUrl + '/Changyang_zhdn/ods_djhddyztdrsj/GetPageList',
+ headData: [
+ { label: "学校机构代码", name: "XXJGDM", width: 100, align: "left"},
+ { label: "学校机构名称", name: "XXJGMC", width: 100, align: "left"},
+ { label: "党组织名称", name: "DZZMC", width: 100, align: "left"},
+ { label: "党组织编号", name: "DZZBH", width: 100, align: "left"},
+ { label: "活动地点", name: "HDDD", width: 100, align: "left"},
+ { label: "活动内容", name: "HDNR", width: 100, align: "left",
+ formatterAsync: function (callback, value, row, op,$cell) {
+ learun.clientdata.getAsync('dataItem', {
+ key: value,
+ code: 'ztdrhdnrdm',
+ callback: function (_data) {
+ callback(_data.text);
+ }
+ });
+ }},
+ { label: "活动开始时间", name: "HDKSSJ", width: 100, align: "left"},
+ { label: "活动结束时间", name: "HDJSSJ", width: 100, align: "left"},
+ { label: "参与人数", name: "CYRS", 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();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
index d1b2a8320..2113d2756 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
@@ -888,6 +888,9 @@
+
+
+
@@ -7000,6 +7003,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_CJSXHDSJMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_CJSXHDSJMap.cs
new file mode 100644
index 000000000..50f17ccbe
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_CJSXHDSJMap.cs
@@ -0,0 +1,29 @@
+using Learun.Application.TwoDevelopment.Changyang_zhdn;
+using System.Data.Entity.ModelConfiguration;
+
+namespace Learun.Application.Mapping
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:35
+ /// 描 述:参加赛事活动数据表
+ ///
+ public class ODS_CJSXHDSJMap : EntityTypeConfiguration
+ {
+ public ODS_CJSXHDSJMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("ODS_CJSXHDSJ");
+ //主键
+ this.HasKey(t => t.GZZYQKSJID);
+ #endregion
+
+ #region 配置关系
+ #endregion
+ }
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYDHSJMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYDHSJMap.cs
index 36acd6115..586b33491 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYDHSJMap.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYDHSJMap.cs
@@ -7,7 +7,7 @@ namespace Learun.Application.Mapping
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
- /// 日 期:2022-11-09 16:15
+ /// 日 期:2022-11-09 16:18
/// 描 述:党建活动党员大会数据表
///
public class ODS_DJHDDYDHSJMap : EntityTypeConfiguration
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYRCSJMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYRCSJMap.cs
new file mode 100644
index 000000000..6b60e658d
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYRCSJMap.cs
@@ -0,0 +1,29 @@
+using Learun.Application.TwoDevelopment.Changyang_zhdn;
+using System.Data.Entity.ModelConfiguration;
+
+namespace Learun.Application.Mapping
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:12
+ /// 描 述:党建活动党员日常数据表
+ ///
+ public class ODS_DJHDDYRCSJMap : EntityTypeConfiguration
+ {
+ public ODS_DJHDDYRCSJMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("ODS_DJHDDYRCSJ");
+ //主键
+ this.HasKey(t => t.GZZYQKSJID);
+ #endregion
+
+ #region 配置关系
+ #endregion
+ }
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYZTDRSJMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYZTDRSJMap.cs
new file mode 100644
index 000000000..5cdf4d6e7
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYZTDRSJMap.cs
@@ -0,0 +1,29 @@
+using Learun.Application.TwoDevelopment.Changyang_zhdn;
+using System.Data.Entity.ModelConfiguration;
+
+namespace Learun.Application.Mapping
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:24
+ /// 描 述:党建活动党员主题党日数据表
+ ///
+ public class ODS_DJHDDYZTDRSJMap : EntityTypeConfiguration
+ {
+ public ODS_DJHDDYZTDRSJMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("ODS_DJHDDYZTDRSJ");
+ //主键
+ this.HasKey(t => t.GZZYQKSJID);
+ #endregion
+
+ #region 配置关系
+ #endregion
+ }
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
index 07aed1834..03284aa17 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
@@ -647,6 +647,9 @@
+
+
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ODS_CJSXHDSJEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ODS_CJSXHDSJEntity.cs
new file mode 100644
index 000000000..9a425cda5
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ODS_CJSXHDSJEntity.cs
@@ -0,0 +1,115 @@
+using Learun.Util;
+using System;
+using System.ComponentModel.DataAnnotations.Schema;
+
+namespace Learun.Application.TwoDevelopment.Changyang_zhdn
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:35
+ /// 描 述:参加赛事活动数据表
+ ///
+ public class ODS_CJSXHDSJEntity
+ {
+ #region 实体成员
+ ///
+ /// 主键数据唯一性标识
+ ///
+ [Column("GZZYQKSJID")]
+ public string GZZYQKSJID { get; set; }
+ ///
+ /// 学校机构代码
+ ///
+ [Column("XXJGDM")]
+ public string XXJGDM { get; set; }
+ ///
+ /// 学校机构名称
+ ///
+ [Column("XXJGMC")]
+ public string XXJGMC { get; set; }
+ ///
+ /// 活动名称
+ ///
+ [Column("HDMC")]
+ public string HDMC { get; set; }
+ ///
+ /// 活动主题
+ ///
+ [Column("HDZT")]
+ public string HDZT { get; set; }
+ ///
+ /// 活动形式
+ ///
+ [Column("HDXS")]
+ public string HDXS { get; set; }
+ ///
+ /// 活动内容
+ ///
+ [Column("HDNR")]
+ public string HDNR { get; set; }
+ ///
+ /// 主办单位
+ ///
+ [Column("ZBDW")]
+ public string ZBDW { get; set; }
+ ///
+ /// 主办单位级别
+ ///
+ [Column("ZBDWJB")]
+ public string ZBDWJB { get; set; }
+ ///
+ /// 活动开始日期
+ ///
+ [Column("HDKSRQ")]
+ public string HDKSRQ { get; set; }
+ ///
+ /// 活动结束日期
+ ///
+ [Column("HDJSRQ")]
+ public string HDJSRQ { get; set; }
+ ///
+ /// 校方负责人
+ ///
+ [Column("XFFZR")]
+ public string XFFZR { get; set; }
+ ///
+ /// 参与教师数
+ ///
+ [Column("CYJSS")]
+ public int? CYJSS { get; set; }
+ ///
+ /// 参与学生数
+ ///
+ [Column("CYXSS")]
+ public int? CYXSS { get; set; }
+ ///
+ /// 数据采集时间
+ ///
+ [Column("SJCJSJ")]
+ public string SJCJSJ { get; set; }
+ #endregion
+
+ #region 扩展操作
+ ///
+ /// 新增调用
+ ///
+ public void Create()
+ {
+ this.GZZYQKSJID = Guid.NewGuid().ToString();
+ }
+ ///
+ /// 编辑调用
+ ///
+ ///
+ public void Modify(string keyValue)
+ {
+ this.GZZYQKSJID = keyValue;
+ }
+ #endregion
+ #region 扩展字段
+ #endregion
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ods_cjsxhdsjBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ods_cjsxhdsjBLL.cs
new file mode 100644
index 000000000..d1ad45429
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ods_cjsxhdsjBLL.cs
@@ -0,0 +1,125 @@
+using Learun.Util;
+using System;
+using System.Data;
+using System.Collections.Generic;
+
+namespace Learun.Application.TwoDevelopment.Changyang_zhdn
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:35
+ /// 描 述:参加赛事活动数据表
+ ///
+ public class ods_cjsxhdsjBLL : ods_cjsxhdsjIBLL
+ {
+ private ods_cjsxhdsjService ods_cjsxhdsjService = new ods_cjsxhdsjService();
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ return ods_cjsxhdsjService.GetPageList(pagination, queryJson);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取ODS_CJSXHDSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_CJSXHDSJEntity GetODS_CJSXHDSJEntity(string keyValue)
+ {
+ try
+ {
+ return ods_cjsxhdsjService.GetODS_CJSXHDSJEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ ods_cjsxhdsjService.DeleteEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ public void SaveEntity(string keyValue, ODS_CJSXHDSJEntity entity)
+ {
+ try
+ {
+ ods_cjsxhdsjService.SaveEntity(keyValue, entity);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ods_cjsxhdsjIBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ods_cjsxhdsjIBLL.cs
new file mode 100644
index 000000000..ca04cc219
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ods_cjsxhdsjIBLL.cs
@@ -0,0 +1,48 @@
+using Learun.Util;
+using System.Data;
+using System.Collections.Generic;
+
+namespace Learun.Application.TwoDevelopment.Changyang_zhdn
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:35
+ /// 描 述:参加赛事活动数据表
+ ///
+ public interface ods_cjsxhdsjIBLL
+ {
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 查询参数
+ ///
+ IEnumerable GetPageList(Pagination pagination, string queryJson);
+ ///
+ /// 获取ODS_CJSXHDSJ表实体数据
+ ///
+ /// 主键
+ ///
+ ODS_CJSXHDSJEntity GetODS_CJSXHDSJEntity(string keyValue);
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ void DeleteEntity(string keyValue);
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ void SaveEntity(string keyValue, ODS_CJSXHDSJEntity entity);
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ods_cjsxhdsjService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ods_cjsxhdsjService.cs
new file mode 100644
index 000000000..d659ad5dc
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_cjsxhdsj/ods_cjsxhdsjService.cs
@@ -0,0 +1,158 @@
+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
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:35
+ /// 描 述:参加赛事活动数据表
+ ///
+ public class ods_cjsxhdsjService : RepositoryFactory
+ {
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 查询参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ var strSql = new StringBuilder();
+ strSql.Append("SELECT ");
+ strSql.Append(@"
+ t.GZZYQKSJID,
+ t.XXJGDM,
+ t.XXJGMC,
+ t.HDMC,
+ t.HDZT,
+ t.HDXS,
+ t.HDNR,
+ t.ZBDW,
+ t.ZBDWJB,
+ t.HDKSRQ,
+ t.HDJSRQ,
+ t.XFFZR,
+ t.CYJSS,
+ t.CYXSS,
+ t.SJCJSJ
+ ");
+ strSql.Append(" FROM ODS_CJSXHDSJ t ");
+ strSql.Append(" WHERE 1=1 ");
+ var queryParam = queryJson.ToJObject();
+ // 虚拟参数
+ var dp = new DynamicParameters(new { });
+ return this.BaseRepository("changyang").FindList(strSql.ToString(),dp, pagination);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取ODS_CJSXHDSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_CJSXHDSJEntity GetODS_CJSXHDSJEntity(string keyValue)
+ {
+ try
+ {
+ return this.BaseRepository("changyang").FindEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ this.BaseRepository("changyang").Delete(t=>t.GZZYQKSJID == keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ public void SaveEntity(string keyValue, ODS_CJSXHDSJEntity 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
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ODS_DJHDDYDHSJEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ODS_DJHDDYDHSJEntity.cs
index 77e252e7f..6360c21e0 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ODS_DJHDDYDHSJEntity.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ODS_DJHDDYDHSJEntity.cs
@@ -8,7 +8,7 @@ namespace Learun.Application.TwoDevelopment.Changyang_zhdn
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
- /// 日 期:2022-11-09 16:15
+ /// 日 期:2022-11-09 16:18
/// 描 述:党建活动党员大会数据表
///
public class ODS_DJHDDYDHSJEntity
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjBLL.cs
index 596a4ca9c..1dda4b7a1 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjBLL.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjBLL.cs
@@ -9,7 +9,7 @@ namespace Learun.Application.TwoDevelopment.Changyang_zhdn
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
- /// 日 期:2022-11-09 16:15
+ /// 日 期:2022-11-09 16:18
/// 描 述:党建活动党员大会数据表
///
public class ods_djhddydhsjBLL : ods_djhddydhsjIBLL
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjIBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjIBLL.cs
index 1567f9a1c..12d2d1ea1 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjIBLL.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjIBLL.cs
@@ -8,7 +8,7 @@ namespace Learun.Application.TwoDevelopment.Changyang_zhdn
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
- /// 日 期:2022-11-09 16:15
+ /// 日 期:2022-11-09 16:18
/// 描 述:党建活动党员大会数据表
///
public interface ods_djhddydhsjIBLL
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjService.cs
index eb8873edb..759609e6b 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjService.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddydhsj/ods_djhddydhsjService.cs
@@ -12,7 +12,7 @@ namespace Learun.Application.TwoDevelopment.Changyang_zhdn
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
- /// 日 期:2022-11-09 16:15
+ /// 日 期:2022-11-09 16:18
/// 描 述:党建活动党员大会数据表
///
public class ods_djhddydhsjService : RepositoryFactory
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ODS_DJHDDYRCSJEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ODS_DJHDDYRCSJEntity.cs
new file mode 100644
index 000000000..8e4cbd220
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ODS_DJHDDYRCSJEntity.cs
@@ -0,0 +1,95 @@
+using Learun.Util;
+using System;
+using System.ComponentModel.DataAnnotations.Schema;
+
+namespace Learun.Application.TwoDevelopment.Changyang_zhdn
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:12
+ /// 描 述:党建活动党员日常数据表
+ ///
+ public class ODS_DJHDDYRCSJEntity
+ {
+ #region 实体成员
+ ///
+ /// 主键数据唯一性标识
+ ///
+ [Column("GZZYQKSJID")]
+ public string GZZYQKSJID { get; set; }
+ ///
+ /// 学校机构代码
+ ///
+ [Column("XXJGDM")]
+ public string XXJGDM { get; set; }
+ ///
+ /// 学校机构名称
+ ///
+ [Column("XXJGMC")]
+ public string XXJGMC { get; set; }
+ ///
+ /// 党组织名称
+ ///
+ [Column("DZZMC")]
+ public string DZZMC { get; set; }
+ ///
+ /// 党组织编号
+ ///
+ [Column("DZZBH")]
+ public string DZZBH { get; set; }
+ ///
+ /// 活动地点
+ ///
+ [Column("HDDD")]
+ public string HDDD { get; set; }
+ ///
+ /// 活动内容
+ ///
+ [Column("HDNR")]
+ public string HDNR { get; set; }
+ ///
+ /// 活动开始时间
+ ///
+ [Column("HDKSSJ")]
+ public string HDKSSJ { get; set; }
+ ///
+ /// 活动结束时间
+ ///
+ [Column("HDJSSJ")]
+ public string HDJSSJ { get; set; }
+ ///
+ /// 参与人数
+ ///
+ [Column("CYRS")]
+ public int? CYRS { get; set; }
+ ///
+ /// 数据采集时间
+ ///
+ [Column("SJCJSJ")]
+ public string SJCJSJ { get; set; }
+ #endregion
+
+ #region 扩展操作
+ ///
+ /// 新增调用
+ ///
+ public void Create()
+ {
+ this.GZZYQKSJID = Guid.NewGuid().ToString();
+ }
+ ///
+ /// 编辑调用
+ ///
+ ///
+ public void Modify(string keyValue)
+ {
+ this.GZZYQKSJID = keyValue;
+ }
+ #endregion
+ #region 扩展字段
+ #endregion
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ods_djhddyrcsjBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ods_djhddyrcsjBLL.cs
new file mode 100644
index 000000000..c75346208
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ods_djhddyrcsjBLL.cs
@@ -0,0 +1,125 @@
+using Learun.Util;
+using System;
+using System.Data;
+using System.Collections.Generic;
+
+namespace Learun.Application.TwoDevelopment.Changyang_zhdn
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:12
+ /// 描 述:党建活动党员日常数据表
+ ///
+ public class ods_djhddyrcsjBLL : ods_djhddyrcsjIBLL
+ {
+ private ods_djhddyrcsjService ods_djhddyrcsjService = new ods_djhddyrcsjService();
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ return ods_djhddyrcsjService.GetPageList(pagination, queryJson);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取ODS_DJHDDYRCSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_DJHDDYRCSJEntity GetODS_DJHDDYRCSJEntity(string keyValue)
+ {
+ try
+ {
+ return ods_djhddyrcsjService.GetODS_DJHDDYRCSJEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ ods_djhddyrcsjService.DeleteEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ public void SaveEntity(string keyValue, ODS_DJHDDYRCSJEntity entity)
+ {
+ try
+ {
+ ods_djhddyrcsjService.SaveEntity(keyValue, entity);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ods_djhddyrcsjIBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ods_djhddyrcsjIBLL.cs
new file mode 100644
index 000000000..fb77ea0a0
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ods_djhddyrcsjIBLL.cs
@@ -0,0 +1,48 @@
+using Learun.Util;
+using System.Data;
+using System.Collections.Generic;
+
+namespace Learun.Application.TwoDevelopment.Changyang_zhdn
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:12
+ /// 描 述:党建活动党员日常数据表
+ ///
+ public interface ods_djhddyrcsjIBLL
+ {
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 查询参数
+ ///
+ IEnumerable GetPageList(Pagination pagination, string queryJson);
+ ///
+ /// 获取ODS_DJHDDYRCSJ表实体数据
+ ///
+ /// 主键
+ ///
+ ODS_DJHDDYRCSJEntity GetODS_DJHDDYRCSJEntity(string keyValue);
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ void DeleteEntity(string keyValue);
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ void SaveEntity(string keyValue, ODS_DJHDDYRCSJEntity entity);
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ods_djhddyrcsjService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ods_djhddyrcsjService.cs
new file mode 100644
index 000000000..49e16e151
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyrcsj/ods_djhddyrcsjService.cs
@@ -0,0 +1,154 @@
+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
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:12
+ /// 描 述:党建活动党员日常数据表
+ ///
+ public class ods_djhddyrcsjService : RepositoryFactory
+ {
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 查询参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ var strSql = new StringBuilder();
+ strSql.Append("SELECT ");
+ strSql.Append(@"
+ t.GZZYQKSJID,
+ t.XXJGDM,
+ t.XXJGMC,
+ t.DZZMC,
+ t.DZZBH,
+ t.HDDD,
+ t.HDNR,
+ t.HDKSSJ,
+ t.HDJSSJ,
+ t.CYRS,
+ t.SJCJSJ
+ ");
+ strSql.Append(" FROM ODS_DJHDDYRCSJ t ");
+ strSql.Append(" WHERE 1=1 ");
+ var queryParam = queryJson.ToJObject();
+ // 虚拟参数
+ var dp = new DynamicParameters(new { });
+ return this.BaseRepository("changyang").FindList(strSql.ToString(),dp, pagination);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取ODS_DJHDDYRCSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_DJHDDYRCSJEntity GetODS_DJHDDYRCSJEntity(string keyValue)
+ {
+ try
+ {
+ return this.BaseRepository("changyang").FindEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ this.BaseRepository("changyang").Delete(t=>t.GZZYQKSJID == keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ public void SaveEntity(string keyValue, ODS_DJHDDYRCSJEntity 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
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ODS_DJHDDYZTDRSJEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ODS_DJHDDYZTDRSJEntity.cs
new file mode 100644
index 000000000..aa9e63438
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ODS_DJHDDYZTDRSJEntity.cs
@@ -0,0 +1,95 @@
+using Learun.Util;
+using System;
+using System.ComponentModel.DataAnnotations.Schema;
+
+namespace Learun.Application.TwoDevelopment.Changyang_zhdn
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:24
+ /// 描 述:党建活动党员主题党日数据表
+ ///
+ public class ODS_DJHDDYZTDRSJEntity
+ {
+ #region 实体成员
+ ///
+ /// 主键数据唯一性标识
+ ///
+ [Column("GZZYQKSJID")]
+ public string GZZYQKSJID { get; set; }
+ ///
+ /// 学校机构代码
+ ///
+ [Column("XXJGDM")]
+ public string XXJGDM { get; set; }
+ ///
+ /// 学校机构名称
+ ///
+ [Column("XXJGMC")]
+ public string XXJGMC { get; set; }
+ ///
+ /// 党组织名称
+ ///
+ [Column("DZZMC")]
+ public string DZZMC { get; set; }
+ ///
+ /// 党组织编号
+ ///
+ [Column("DZZBH")]
+ public string DZZBH { get; set; }
+ ///
+ /// 活动地点
+ ///
+ [Column("HDDD")]
+ public string HDDD { get; set; }
+ ///
+ /// 活动内容
+ ///
+ [Column("HDNR")]
+ public string HDNR { get; set; }
+ ///
+ /// 活动开始时间
+ ///
+ [Column("HDKSSJ")]
+ public string HDKSSJ { get; set; }
+ ///
+ /// 活动结束时间
+ ///
+ [Column("HDJSSJ")]
+ public string HDJSSJ { get; set; }
+ ///
+ /// 参与人数
+ ///
+ [Column("CYRS")]
+ public int? CYRS { get; set; }
+ ///
+ /// 数据采集时间
+ ///
+ [Column("SJCJSJ")]
+ public string SJCJSJ { get; set; }
+ #endregion
+
+ #region 扩展操作
+ ///
+ /// 新增调用
+ ///
+ public void Create()
+ {
+ this.GZZYQKSJID = Guid.NewGuid().ToString();
+ }
+ ///
+ /// 编辑调用
+ ///
+ ///
+ public void Modify(string keyValue)
+ {
+ this.GZZYQKSJID = keyValue;
+ }
+ #endregion
+ #region 扩展字段
+ #endregion
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ods_djhddyztdrsjBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ods_djhddyztdrsjBLL.cs
new file mode 100644
index 000000000..a285ae154
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ods_djhddyztdrsjBLL.cs
@@ -0,0 +1,125 @@
+using Learun.Util;
+using System;
+using System.Data;
+using System.Collections.Generic;
+
+namespace Learun.Application.TwoDevelopment.Changyang_zhdn
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:24
+ /// 描 述:党建活动党员主题党日数据表
+ ///
+ public class ods_djhddyztdrsjBLL : ods_djhddyztdrsjIBLL
+ {
+ private ods_djhddyztdrsjService ods_djhddyztdrsjService = new ods_djhddyztdrsjService();
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ return ods_djhddyztdrsjService.GetPageList(pagination, queryJson);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取ODS_DJHDDYZTDRSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_DJHDDYZTDRSJEntity GetODS_DJHDDYZTDRSJEntity(string keyValue)
+ {
+ try
+ {
+ return ods_djhddyztdrsjService.GetODS_DJHDDYZTDRSJEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ ods_djhddyztdrsjService.DeleteEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ public void SaveEntity(string keyValue, ODS_DJHDDYZTDRSJEntity entity)
+ {
+ try
+ {
+ ods_djhddyztdrsjService.SaveEntity(keyValue, entity);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ods_djhddyztdrsjIBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ods_djhddyztdrsjIBLL.cs
new file mode 100644
index 000000000..10afe8995
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ods_djhddyztdrsjIBLL.cs
@@ -0,0 +1,48 @@
+using Learun.Util;
+using System.Data;
+using System.Collections.Generic;
+
+namespace Learun.Application.TwoDevelopment.Changyang_zhdn
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:24
+ /// 描 述:党建活动党员主题党日数据表
+ ///
+ public interface ods_djhddyztdrsjIBLL
+ {
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 查询参数
+ ///
+ IEnumerable GetPageList(Pagination pagination, string queryJson);
+ ///
+ /// 获取ODS_DJHDDYZTDRSJ表实体数据
+ ///
+ /// 主键
+ ///
+ ODS_DJHDDYZTDRSJEntity GetODS_DJHDDYZTDRSJEntity(string keyValue);
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ void DeleteEntity(string keyValue);
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ void SaveEntity(string keyValue, ODS_DJHDDYZTDRSJEntity entity);
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ods_djhddyztdrsjService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ods_djhddyztdrsjService.cs
new file mode 100644
index 000000000..53140e3e1
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddyztdrsj/ods_djhddyztdrsjService.cs
@@ -0,0 +1,154 @@
+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
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-10 11:24
+ /// 描 述:党建活动党员主题党日数据表
+ ///
+ public class ods_djhddyztdrsjService : RepositoryFactory
+ {
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 查询参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ var strSql = new StringBuilder();
+ strSql.Append("SELECT ");
+ strSql.Append(@"
+ t.GZZYQKSJID,
+ t.XXJGDM,
+ t.XXJGMC,
+ t.DZZMC,
+ t.DZZBH,
+ t.HDDD,
+ t.HDNR,
+ t.HDKSSJ,
+ t.HDJSSJ,
+ t.CYRS,
+ t.SJCJSJ
+ ");
+ strSql.Append(" FROM ODS_DJHDDYZTDRSJ t ");
+ strSql.Append(" WHERE 1=1 ");
+ var queryParam = queryJson.ToJObject();
+ // 虚拟参数
+ var dp = new DynamicParameters(new { });
+ return this.BaseRepository("changyang").FindList(strSql.ToString(),dp, pagination);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取ODS_DJHDDYZTDRSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_DJHDDYZTDRSJEntity GetODS_DJHDDYZTDRSJEntity(string keyValue)
+ {
+ try
+ {
+ return this.BaseRepository("changyang").FindEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ this.BaseRepository("changyang").Delete(t=>t.GZZYQKSJID == keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ public void SaveEntity(string keyValue, ODS_DJHDDYZTDRSJEntity 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
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Learun.Application.TwoDevelopment.csproj b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Learun.Application.TwoDevelopment.csproj
index 829ac97fe..86db36bd3 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Learun.Application.TwoDevelopment.csproj
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Learun.Application.TwoDevelopment.csproj
@@ -2011,6 +2011,18 @@
+
+
+
+
+
+
+
+
+
+
+
+