diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddygbxxsjController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddygbxxsjController.cs
new file mode 100644
index 000000000..0dcc219fc
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddygbxxsjController.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-09 15:17
+ /// 描 述:党建活动党员干部学习数据表
+ ///
+ public class ods_djhddygbxxsjController : MvcControllerBase
+ {
+ private ods_djhddygbxxsjIBLL ods_djhddygbxxsjIBLL = new ods_djhddygbxxsjBLL();
+
+ #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_djhddygbxxsjIBLL.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_DJHDDYGBXXSJData = ods_djhddygbxxsjIBLL.GetODS_DJHDDYGBXXSJEntity( keyValue );
+ var jsonData = new {
+ ODS_DJHDDYGBXXSJ = ODS_DJHDDYGBXXSJData,
+ };
+ return Success(jsonData);
+ }
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult DeleteForm(string keyValue)
+ {
+ ods_djhddygbxxsjIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ [HttpPost]
+ [ValidateAntiForgeryToken]
+ [AjaxOnly]
+ public ActionResult SaveForm(string keyValue, string strEntity)
+ {
+ ODS_DJHDDYGBXXSJEntity entity = strEntity.ToObject();
+ ods_djhddygbxxsjIBLL.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_djhdshyksjController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhdshyksjController.cs
new file mode 100644
index 000000000..e793c0642
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhdshyksjController.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-09 15:48
+ /// 描 述:党建活动三会一课数据表
+ ///
+ public class ods_djhdshyksjController : MvcControllerBase
+ {
+ private ods_djhdshyksjIBLL ods_djhdshyksjIBLL = new ods_djhdshyksjBLL();
+
+ #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_djhdshyksjIBLL.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_DJHDSHYKSJData = ods_djhdshyksjIBLL.GetODS_DJHDSHYKSJEntity( keyValue );
+ var jsonData = new {
+ ODS_DJHDSHYKSJ = ODS_DJHDSHYKSJData,
+ };
+ return Success(jsonData);
+ }
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult DeleteForm(string keyValue)
+ {
+ ods_djhdshyksjIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ [HttpPost]
+ [ValidateAntiForgeryToken]
+ [AjaxOnly]
+ public ActionResult SaveForm(string keyValue, string strEntity)
+ {
+ ODS_DJHDSHYKSJEntity entity = strEntity.ToObject();
+ ods_djhdshyksjIBLL.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_xnsxjdsjController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_xnsxjdsjController.cs
new file mode 100644
index 000000000..b6e4e7646
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_xnsxjdsjController.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-09 15:37
+ /// 描 述:校内实训基地数据表
+ ///
+ public class ods_xnsxjdsjController : MvcControllerBase
+ {
+ private ods_xnsxjdsjIBLL ods_xnsxjdsjIBLL = new ods_xnsxjdsjBLL();
+
+ #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_xnsxjdsjIBLL.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_XNSXJDSJData = ods_xnsxjdsjIBLL.GetODS_XNSXJDSJEntity( keyValue );
+ var jsonData = new {
+ ODS_XNSXJDSJ = ODS_XNSXJDSJData,
+ };
+ return Success(jsonData);
+ }
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult DeleteForm(string keyValue)
+ {
+ ods_xnsxjdsjIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ [HttpPost]
+ [ValidateAntiForgeryToken]
+ [AjaxOnly]
+ public ActionResult SaveForm(string keyValue, string strEntity)
+ {
+ ODS_XNSXJDSJEntity entity = strEntity.ToObject();
+ ods_xnsxjdsjIBLL.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_djhddygbxxsj/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.cshtml
new file mode 100644
index 000000000..db1030c60
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.cshtml
@@ -0,0 +1,47 @@
+@{
+ ViewBag.Title = "党建活动党员干部学习数据表";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.js
new file mode 100644
index 000000000..b1c327702
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.js
@@ -0,0 +1,52 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-09 15:17
+ * 描 述:党建活动党员干部学习数据表
+ */
+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 () {
+ $('#DYGBXXPXZYTJZT').lrDataItemSelect({ code: 'dygbxxpxzytjztdm' });
+ $('#DYGBXXPXNR').lrDataItemSelect({ code: 'dygbxxpxnrdm' });
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_djhddygbxxsj/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_djhddygbxxsj/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_djhddygbxxsj/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.cshtml
new file mode 100644
index 000000000..8dd79523c
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.cshtml
@@ -0,0 +1,27 @@
+@{
+ ViewBag.Title = "党建活动党员干部学习数据表";
+ Layout = "~/Views/Shared/_Index.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.js
new file mode 100644
index 000000000..52f463dca
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.js
@@ -0,0 +1,115 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-09 15:17
+ * 描 述:党建活动党员干部学习数据表
+ */
+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_djhddygbxxsj/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_djhddygbxxsj/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_djhddygbxxsj/DeleteForm', { keyValue: keyValue}, function () {
+ refreshGirdData();
+ });
+ }
+ });
+ }
+ });
+ // 打印
+ $('#lr_print').on('click', function () {
+ $('#gridtable').jqprintTable();
+ });
+ },
+ // 初始化列表
+ initGird: function () {
+ $('#gridtable').lrAuthorizeJfGrid({
+ url: top.$.rootUrl + '/Changyang_zhdn/ods_djhddygbxxsj/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: "DYGBXXPXZYTJZT", width: 100, align: "left",
+ formatterAsync: function (callback, value, row, op,$cell) {
+ learun.clientdata.getAsync('dataItem', {
+ key: value,
+ code: 'dygbxxpxzytjztdm',
+ callback: function (_data) {
+ callback(_data.text);
+ }
+ });
+ }},
+ { label: "党员干部学习培训内容", name: "DYGBXXPXNR", width: 100, align: "left",
+ formatterAsync: function (callback, value, row, op,$cell) {
+ learun.clientdata.getAsync('dataItem', {
+ key: value,
+ code: 'dygbxxpxnrdm',
+ 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/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Form.cshtml
new file mode 100644
index 000000000..aded70145
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Form.cshtml
@@ -0,0 +1,51 @@
+@{
+ ViewBag.Title = "党建活动三会一课数据表";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Form.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Form.js
new file mode 100644
index 000000000..cac51e595
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Form.js
@@ -0,0 +1,51 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-09 15:48
+ * 描 述:党建活动三会一课数据表
+ */
+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 () {
+ $('#HDXS').lrDataItemSelect({ code: 'djhdxsdm' });
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_djhdshyksj/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_djhdshyksj/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_djhdshyksj/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Index.cshtml
new file mode 100644
index 000000000..006b477f2
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Index.cshtml
@@ -0,0 +1,29 @@
+@{
+ ViewBag.Title = "党建活动三会一课数据表";
+ Layout = "~/Views/Shared/_Index.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Index.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Index.js
new file mode 100644
index 000000000..8b3583e9b
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhdshyksj/Index.js
@@ -0,0 +1,106 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-09 15:48
+ * 描 述:党建活动三会一课数据表
+ */
+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_djhdshyksj/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_djhdshyksj/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_djhdshyksj/DeleteForm', { keyValue: keyValue}, function () {
+ refreshGirdData();
+ });
+ }
+ });
+ }
+ });
+ // 导入
+ $('#lr_import').on('click', function () {
+ });
+ },
+ // 初始化列表
+ initGird: function () {
+ $('#gridtable').lrAuthorizeJfGrid({
+ url: top.$.rootUrl + '/Changyang_zhdn/ods_djhdshyksj/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: "HDXS", width: 100, align: "left",
+ formatterAsync: function (callback, value, row, op,$cell) {
+ learun.clientdata.getAsync('dataItem', {
+ key: value,
+ code: 'djhdxsdm',
+ callback: function (_data) {
+ callback(_data.text);
+ }
+ });
+ }},
+ { label: "党课主讲人", name: "DKZJR", 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_xnsxjdsj/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.cshtml
new file mode 100644
index 000000000..cabc6e75e
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.cshtml
@@ -0,0 +1,75 @@
+@{
+ ViewBag.Title = "校内实训基地数据表";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.js
new file mode 100644
index 000000000..b66b8c13e
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.js
@@ -0,0 +1,50 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-09 15:37
+ * 描 述:校内实训基地数据表
+ */
+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_xnsxjdsj/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_xnsxjdsj/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_xnsxjdsj/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.cshtml
new file mode 100644
index 000000000..c4c1ec2e3
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.cshtml
@@ -0,0 +1,29 @@
+@{
+ ViewBag.Title = "校内实训基地数据表";
+ Layout = "~/Views/Shared/_Index.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.js
new file mode 100644
index 000000000..82910ec43
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.js
@@ -0,0 +1,103 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2022-11-09 15:37
+ * 描 述:校内实训基地数据表
+ */
+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_xnsxjdsj/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_xnsxjdsj/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_xnsxjdsj/DeleteForm', { keyValue: keyValue}, function () {
+ refreshGirdData();
+ });
+ }
+ });
+ }
+ });
+ // 导入
+ $('#lr_import').on('click', function () {
+ });
+ },
+ // 初始化列表
+ initGird: function () {
+ $('#gridtable').lrAuthorizeJfGrid({
+ url: top.$.rootUrl + '/Changyang_zhdn/ods_xnsxjdsj/GetPageList',
+ headData: [
+ { label: "学校机构代码", name: "XXJGDM", width: 100, align: "left"},
+ { label: "学校机构名称", name: "XXJGMC", width: 100, align: "left"},
+ { label: "实训基地号", name: "SXJDH", width: 100, align: "left"},
+ { label: "实训基地名称", name: "SXJDMC", width: 100, align: "left"},
+ { label: "成立年度", name: "CLND", width: 100, align: "left"},
+ { label: "面向专业", name: "MXZY", width: 100, align: "left"},
+ { label: "被列为实训基地项目支持部门", name: "ZCBM", width: 100, align: "left"},
+ { label: "批准日期", name: "PZRQ", width: 100, align: "left"},
+ { label: "实训室数", name: "SXSS", width: 100, align: "left"},
+ { label: "实训项目总数", name: "SXXMZS", width: 100, align: "left"},
+ { label: "基地类别", name: "JDLB", width: 100, align: "left"},
+ { label: "建筑面积", name: "JZMJ", width: 100, align: "left"},
+ { label: "仪器设备总数", name: "YQSBZS", width: 100, align: "left"},
+ { label: "实践教学工位数", name: "SJJXGWS", width: 100, align: "left"},
+ { label: "管理人员(专职)", name: "GLRYZZ", width: 100, align: "left"},
+ { label: "管理人员(兼职)", name: "GLRYJZ", 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 63361bddd..7afebec0a 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
@@ -881,6 +881,9 @@
+
+
+
@@ -6965,6 +6968,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYGBXXSJMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYGBXXSJMap.cs
new file mode 100644
index 000000000..8e86d6bcc
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYGBXXSJMap.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-09 15:17
+ /// 描 述:党建活动党员干部学习数据表
+ ///
+ public class ODS_DJHDDYGBXXSJMap : EntityTypeConfiguration
+ {
+ public ODS_DJHDDYGBXXSJMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("ODS_DJHDDYGBXXSJ");
+ //主键
+ 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_DJHDSHYKSJMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDSHYKSJMap.cs
new file mode 100644
index 000000000..b0fc50832
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDSHYKSJMap.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-09 15:48
+ /// 描 述:党建活动三会一课数据表
+ ///
+ public class ODS_DJHDSHYKSJMap : EntityTypeConfiguration
+ {
+ public ODS_DJHDSHYKSJMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("ODS_DJHDSHYKSJ");
+ //主键
+ 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_XNSXJDSJMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_XNSXJDSJMap.cs
new file mode 100644
index 000000000..0fe3c6403
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_XNSXJDSJMap.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-09 15:37
+ /// 描 述:校内实训基地数据表
+ ///
+ public class ODS_XNSXJDSJMap : EntityTypeConfiguration
+ {
+ public ODS_XNSXJDSJMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("ODS_XNSXJDSJ");
+ //主键
+ 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 53b24774a..d78f4b8d3 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
@@ -640,6 +640,9 @@
+
+
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ODS_DJHDDYGBXXSJEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ODS_DJHDDYGBXXSJEntity.cs
new file mode 100644
index 000000000..d2fc1209b
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ODS_DJHDDYGBXXSJEntity.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-09 15:17
+ /// 描 述:党建活动党员干部学习数据表
+ ///
+ public class ODS_DJHDDYGBXXSJEntity
+ {
+ #region 实体成员
+ ///
+ /// GZZYQKSJID
+ ///
+ [Column("GZZYQKSJID")]
+ public string GZZYQKSJID { get; set; }
+ ///
+ /// XXJGDM
+ ///
+ [Column("XXJGDM")]
+ public string XXJGDM { get; set; }
+ ///
+ /// XXJGMC
+ ///
+ [Column("XXJGMC")]
+ public string XXJGMC { get; set; }
+ ///
+ /// DZZMC
+ ///
+ [Column("DZZMC")]
+ public string DZZMC { get; set; }
+ ///
+ /// DZZBH
+ ///
+ [Column("DZZBH")]
+ public string DZZBH { get; set; }
+ ///
+ /// DYGBXXPXZYTJZT
+ ///
+ [Column("DYGBXXPXZYTJZT")]
+ public string DYGBXXPXZYTJZT { get; set; }
+ ///
+ /// DYGBXXPXNR
+ ///
+ [Column("DYGBXXPXNR")]
+ public string DYGBXXPXNR { get; set; }
+ ///
+ /// HDKSSJ
+ ///
+ [Column("HDKSSJ")]
+ public string HDKSSJ { get; set; }
+ ///
+ /// HDJSSJ
+ ///
+ [Column("HDJSSJ")]
+ public string HDJSSJ { get; set; }
+ ///
+ /// CYRS
+ ///
+ [Column("CYRS")]
+ public int? CYRS { get; set; }
+ ///
+ /// SJCJSJ
+ ///
+ [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_djhddygbxxsj/ods_djhddygbxxsjBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjBLL.cs
new file mode 100644
index 000000000..b5586f58b
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjBLL.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-09 15:17
+ /// 描 述:党建活动党员干部学习数据表
+ ///
+ public class ods_djhddygbxxsjBLL : ods_djhddygbxxsjIBLL
+ {
+ private ods_djhddygbxxsjService ods_djhddygbxxsjService = new ods_djhddygbxxsjService();
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ return ods_djhddygbxxsjService.GetPageList(pagination, queryJson);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取ODS_DJHDDYGBXXSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_DJHDDYGBXXSJEntity GetODS_DJHDDYGBXXSJEntity(string keyValue)
+ {
+ try
+ {
+ return ods_djhddygbxxsjService.GetODS_DJHDDYGBXXSJEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ ods_djhddygbxxsjService.DeleteEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ public void SaveEntity(string keyValue, ODS_DJHDDYGBXXSJEntity entity)
+ {
+ try
+ {
+ ods_djhddygbxxsjService.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_djhddygbxxsj/ods_djhddygbxxsjIBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjIBLL.cs
new file mode 100644
index 000000000..2dfae8bbe
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjIBLL.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-09 15:17
+ /// 描 述:党建活动党员干部学习数据表
+ ///
+ public interface ods_djhddygbxxsjIBLL
+ {
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 查询参数
+ ///
+ IEnumerable GetPageList(Pagination pagination, string queryJson);
+ ///
+ /// 获取ODS_DJHDDYGBXXSJ表实体数据
+ ///
+ /// 主键
+ ///
+ ODS_DJHDDYGBXXSJEntity GetODS_DJHDDYGBXXSJEntity(string keyValue);
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ void DeleteEntity(string keyValue);
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ void SaveEntity(string keyValue, ODS_DJHDDYGBXXSJEntity entity);
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjService.cs
new file mode 100644
index 000000000..ceb0d62fb
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjService.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-09 15:17
+ /// 描 述:党建活动党员干部学习数据表
+ ///
+ public class ods_djhddygbxxsjService : 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.DYGBXXPXZYTJZT,
+ t.DYGBXXPXNR,
+ t.HDKSSJ,
+ t.HDJSSJ,
+ t.CYRS,
+ t.SJCJSJ
+ ");
+ strSql.Append(" FROM ODS_DJHDDYGBXXSJ 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_DJHDDYGBXXSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_DJHDDYGBXXSJEntity GetODS_DJHDDYGBXXSJEntity(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_DJHDDYGBXXSJEntity 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_djhdshyksj/ODS_DJHDSHYKSJEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhdshyksj/ODS_DJHDSHYKSJEntity.cs
new file mode 100644
index 000000000..2c2f1526a
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhdshyksj/ODS_DJHDSHYKSJEntity.cs
@@ -0,0 +1,100 @@
+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-09 15:48
+ /// 描 述:党建活动三会一课数据表
+ ///
+ public class ODS_DJHDSHYKSJEntity
+ {
+ #region 实体成员
+ ///
+ /// GZZYQKSJID
+ ///
+ [Column("GZZYQKSJID")]
+ public string GZZYQKSJID { get; set; }
+ ///
+ /// XXJGDM
+ ///
+ [Column("XXJGDM")]
+ public string XXJGDM { get; set; }
+ ///
+ /// XXJGMC
+ ///
+ [Column("XXJGMC")]
+ public string XXJGMC { get; set; }
+ ///
+ /// DZZMC
+ ///
+ [Column("DZZMC")]
+ public string DZZMC { get; set; }
+ ///
+ /// DZZBH
+ ///
+ [Column("DZZBH")]
+ public string DZZBH { get; set; }
+ ///
+ /// HDXS
+ ///
+ [Column("HDXS")]
+ public string HDXS { get; set; }
+ ///
+ /// DKZJR
+ ///
+ [Column("DKZJR")]
+ public string DKZJR { get; set; }
+ ///
+ /// HDNR
+ ///
+ [Column("HDNR")]
+ public string HDNR { get; set; }
+ ///
+ /// HDKSSJ
+ ///
+ [Column("HDKSSJ")]
+ public string HDKSSJ { get; set; }
+ ///
+ /// HDJSSJ
+ ///
+ [Column("HDJSSJ")]
+ public string HDJSSJ { get; set; }
+ ///
+ /// CYRS
+ ///
+ [Column("CYRS")]
+ public int? CYRS { get; set; }
+ ///
+ /// SJCJSJ
+ ///
+ [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_djhdshyksj/ods_djhdshyksjBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhdshyksj/ods_djhdshyksjBLL.cs
new file mode 100644
index 000000000..21ff5c9f4
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhdshyksj/ods_djhdshyksjBLL.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-09 15:48
+ /// 描 述:党建活动三会一课数据表
+ ///
+ public class ods_djhdshyksjBLL : ods_djhdshyksjIBLL
+ {
+ private ods_djhdshyksjService ods_djhdshyksjService = new ods_djhdshyksjService();
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ return ods_djhdshyksjService.GetPageList(pagination, queryJson);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取ODS_DJHDSHYKSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_DJHDSHYKSJEntity GetODS_DJHDSHYKSJEntity(string keyValue)
+ {
+ try
+ {
+ return ods_djhdshyksjService.GetODS_DJHDSHYKSJEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ ods_djhdshyksjService.DeleteEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ public void SaveEntity(string keyValue, ODS_DJHDSHYKSJEntity entity)
+ {
+ try
+ {
+ ods_djhdshyksjService.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_djhdshyksj/ods_djhdshyksjIBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhdshyksj/ods_djhdshyksjIBLL.cs
new file mode 100644
index 000000000..626f5309f
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhdshyksj/ods_djhdshyksjIBLL.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-09 15:48
+ /// 描 述:党建活动三会一课数据表
+ ///
+ public interface ods_djhdshyksjIBLL
+ {
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 查询参数
+ ///
+ IEnumerable GetPageList(Pagination pagination, string queryJson);
+ ///
+ /// 获取ODS_DJHDSHYKSJ表实体数据
+ ///
+ /// 主键
+ ///
+ ODS_DJHDSHYKSJEntity GetODS_DJHDSHYKSJEntity(string keyValue);
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ void DeleteEntity(string keyValue);
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ void SaveEntity(string keyValue, ODS_DJHDSHYKSJEntity entity);
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhdshyksj/ods_djhdshyksjService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhdshyksj/ods_djhdshyksjService.cs
new file mode 100644
index 000000000..9e996321d
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhdshyksj/ods_djhdshyksjService.cs
@@ -0,0 +1,155 @@
+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-09 15:48
+ /// 描 述:党建活动三会一课数据表
+ ///
+ public class ods_djhdshyksjService : 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.HDXS,
+ t.DKZJR,
+ t.HDNR,
+ t.HDKSSJ,
+ t.HDJSSJ,
+ t.CYRS,
+ t.SJCJSJ
+ ");
+ strSql.Append(" FROM ODS_DJHDSHYKSJ 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_DJHDSHYKSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_DJHDSHYKSJEntity GetODS_DJHDSHYKSJEntity(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_DJHDSHYKSJEntity 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_xnsxjdsj/ODS_XNSXJDSJEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ODS_XNSXJDSJEntity.cs
new file mode 100644
index 000000000..8e2a99bde
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ODS_XNSXJDSJEntity.cs
@@ -0,0 +1,130 @@
+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-09 15:37
+ /// 描 述:校内实训基地数据表
+ ///
+ public class ODS_XNSXJDSJEntity
+ {
+ #region 实体成员
+ ///
+ /// GZZYQKSJID
+ ///
+ [Column("GZZYQKSJID")]
+ public string GZZYQKSJID { get; set; }
+ ///
+ /// 学校机构代码
+ ///
+ [Column("XXJGDM")]
+ public string XXJGDM { get; set; }
+ ///
+ /// 学校机构名称
+ ///
+ [Column("XXJGMC")]
+ public string XXJGMC { get; set; }
+ ///
+ /// 实训基地号
+ ///
+ [Column("SXJDH")]
+ public string SXJDH { get; set; }
+ ///
+ /// 实训基地名称
+ ///
+ [Column("SXJDMC")]
+ public string SXJDMC { get; set; }
+ ///
+ /// 成立年度
+ ///
+ [Column("CLND")]
+ public string CLND { get; set; }
+ ///
+ /// 面向专业
+ ///
+ [Column("MXZY")]
+ public string MXZY { get; set; }
+ ///
+ /// 被列为实训基地项目支持部门
+ ///
+ [Column("ZCBM")]
+ public string ZCBM { get; set; }
+ ///
+ /// 批准日期
+ ///
+ [Column("PZRQ")]
+ public string PZRQ { get; set; }
+ ///
+ /// 实训室数
+ ///
+ [Column("SXSS")]
+ public int? SXSS { get; set; }
+ ///
+ /// 实训项目总数
+ ///
+ [Column("SXXMZS")]
+ public int? SXXMZS { get; set; }
+ ///
+ /// 基地类别
+ ///
+ [Column("JDLB")]
+ public string JDLB { get; set; }
+ ///
+ /// 建筑面积
+ ///
+ [Column("JZMJ")]
+ public int? JZMJ { get; set; }
+ ///
+ /// 仪器设备总数
+ ///
+ [Column("YQSBZS")]
+ public int? YQSBZS { get; set; }
+ ///
+ /// 实践教学工位数
+ ///
+ [Column("SJJXGWS")]
+ public int? SJJXGWS { get; set; }
+ ///
+ /// 管理人员(专职)
+ ///
+ [Column("GLRYZZ")]
+ public string GLRYZZ { get; set; }
+ ///
+ /// 管理人员(兼职)
+ ///
+ [Column("GLRYJZ")]
+ public string GLRYJZ { 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_xnsxjdsj/ods_xnsxjdsjBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjBLL.cs
new file mode 100644
index 000000000..4af5d5284
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjBLL.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-09 15:37
+ /// 描 述:校内实训基地数据表
+ ///
+ public class ods_xnsxjdsjBLL : ods_xnsxjdsjIBLL
+ {
+ private ods_xnsxjdsjService ods_xnsxjdsjService = new ods_xnsxjdsjService();
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ return ods_xnsxjdsjService.GetPageList(pagination, queryJson);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取ODS_XNSXJDSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_XNSXJDSJEntity GetODS_XNSXJDSJEntity(string keyValue)
+ {
+ try
+ {
+ return ods_xnsxjdsjService.GetODS_XNSXJDSJEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ ods_xnsxjdsjService.DeleteEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ public void SaveEntity(string keyValue, ODS_XNSXJDSJEntity entity)
+ {
+ try
+ {
+ ods_xnsxjdsjService.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_xnsxjdsj/ods_xnsxjdsjIBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjIBLL.cs
new file mode 100644
index 000000000..05b961856
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjIBLL.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-09 15:37
+ /// 描 述:校内实训基地数据表
+ ///
+ public interface ods_xnsxjdsjIBLL
+ {
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 查询参数
+ ///
+ IEnumerable GetPageList(Pagination pagination, string queryJson);
+ ///
+ /// 获取ODS_XNSXJDSJ表实体数据
+ ///
+ /// 主键
+ ///
+ ODS_XNSXJDSJEntity GetODS_XNSXJDSJEntity(string keyValue);
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ void DeleteEntity(string keyValue);
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ void SaveEntity(string keyValue, ODS_XNSXJDSJEntity entity);
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjService.cs
new file mode 100644
index 000000000..c18e9d40e
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjService.cs
@@ -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
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2022-11-09 15:37
+ /// 描 述:校内实训基地数据表
+ ///
+ public class ods_xnsxjdsjService : 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.SXJDH,
+ t.SXJDMC,
+ t.CLND,
+ t.MXZY,
+ t.ZCBM,
+ t.PZRQ,
+ t.SXSS,
+ t.SXXMZS,
+ t.JDLB,
+ t.JZMJ,
+ t.YQSBZS,
+ t.SJJXGWS,
+ t.GLRYZZ,
+ t.GLRYJZ,
+ t.SJCJSJ
+ ");
+ strSql.Append(" FROM ODS_XNSXJDSJ 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_XNSXJDSJ表实体数据
+ ///
+ /// 主键
+ ///
+ public ODS_XNSXJDSJEntity GetODS_XNSXJDSJEntity(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_XNSXJDSJEntity 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 d6bc2edef..b9a7bbfb0 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
@@ -1983,6 +1983,18 @@
+
+
+
+
+
+
+
+
+
+
+
+