diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_xwsxjdsjController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_xwsxjdsjController.cs new file mode 100644 index 000000000..38b1e98d3 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_xwsxjdsjController.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:36 + /// 描 述:校外实训基地数据表 + /// + public class ods_xwsxjdsjController : MvcControllerBase + { + private ods_xwsxjdsjIBLL ods_xwsxjdsjIBLL = new ods_xwsxjdsjBLL(); + + #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_xwsxjdsjIBLL.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_XWSXJDSJData = ods_xwsxjdsjIBLL.GetODS_XWSXJDSJEntity( keyValue ); + var jsonData = new { + ODS_XWSXJDSJ = ODS_XWSXJDSJData, + }; + return Success(jsonData); + } + #endregion + + #region 提交数据 + + /// + /// 删除实体数据 + /// + /// 主键 + /// + [HttpPost] + [AjaxOnly] + public ActionResult DeleteForm(string keyValue) + { + ods_xwsxjdsjIBLL.DeleteEntity(keyValue); + return Success("删除成功!"); + } + /// + /// 保存实体数据(新增、修改) + /// + /// 主键 + /// 实体 + /// + [HttpPost] + [ValidateAntiForgeryToken] + [AjaxOnly] + public ActionResult SaveForm(string keyValue, string strEntity) + { + ODS_XWSXJDSJEntity entity = strEntity.ToObject(); + ods_xwsxjdsjIBLL.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_xwsxjdsj/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Form.cshtml new file mode 100644 index 000000000..c9f677df4 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Form.cshtml @@ -0,0 +1,95 @@ +@{ + ViewBag.Title = "校外实训基地数据表"; + Layout = "~/Views/Shared/_Form.cshtml"; +} +
+
+
学校机构代码
+ +
+
+
学校机构名称
+ +
+
+
实习实训基地号
+ +
+
+
实习实训基地名称
+ +
+
+
依托单位名称
+ +
+
+
依托单位性质
+
+
+
+
单位组织机构代码
+ +
+
+
在岗职工总数
+ +
+
+
所在区域
+ +
+
+
详细地址
+ +
+
+
基地联系人姓名
+ +
+
+
联系人电话
+ +
+
+
联系人邮箱
+ +
+
+
基地成立年月
+ +
+
+
所属行业
+
+
+
+
所属产业
+
+
+
+
面向专业
+ +
+
+
合作开始时间
+ +
+
+
合作结束时间
+ +
+
+
合作协议签署状态
+ +
+
+
合作状态
+ +
+
+
数据采集时间
+ +
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Form.js") diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Form.js new file mode 100644 index 000000000..de01c1773 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Form.js @@ -0,0 +1,53 @@ +/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) + * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 + * 创建人:超级管理员 + * 日 期:2022-11-10 11:36 + * 描 述:校外实训基地数据表 + */ +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 () { + $('#YTDWXZ').lrDataItemSelect({ code: 'dwxzdm' }); + $('#SSHY').lrDataItemSelect({ code: 'sxhydm' }); + $('#SSCY').lrDataItemSelect({ code: 'cydm' }); + }, + initData: function () { + if (!!keyValue) { + $.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_xwsxjdsj/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_xwsxjdsj/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_xwsxjdsj/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Index.cshtml new file mode 100644 index 000000000..90d8bd4a1 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Index.cshtml @@ -0,0 +1,29 @@ +@{ + ViewBag.Title = "校外实训基地数据表"; + Layout = "~/Views/Shared/_Index.cshtml"; +} +
+
+
+
+
+
+
+
+ +
+ + +
+
+
+
+
+
+@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Index.js") diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Index.js new file mode 100644 index 000000000..e6455bad6 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xwsxjdsj/Index.js @@ -0,0 +1,135 @@ +/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) + * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 + * 创建人:超级管理员 + * 日 期:2022-11-10 11:36 + * 描 述:校外实训基地数据表 + */ +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_xwsxjdsj/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_xwsxjdsj/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_xwsxjdsj/DeleteForm', { keyValue: keyValue}, function () { + refreshGirdData(); + }); + } + }); + } + }); + //  导入 + $('#lr_import').on('click', function () { + }); + }, + // 初始化列表 + initGird: function () { + $('#gridtable').lrAuthorizeJfGrid({ + url: top.$.rootUrl + '/Changyang_zhdn/ods_xwsxjdsj/GetPageList', + headData: [ + { label: "学校机构代码", name: "XXJGDM", width: 100, align: "left"}, + { label: "学校机构名称", name: "XXJGMC", width: 100, align: "left"}, + { label: "实习实训基地号", name: "SXSXJDH", width: 100, align: "left"}, + { label: "实习实训基地名称", name: "SXSXJDMC", width: 100, align: "left"}, + { label: "依托单位名称", name: "YTDWMC", width: 100, align: "left"}, + { label: "依托单位性质", name: "YTDWXZ", width: 100, align: "left", + formatterAsync: function (callback, value, row, op,$cell) { + learun.clientdata.getAsync('dataItem', { + key: value, + code: 'dwxzdm', + callback: function (_data) { + callback(_data.text); + } + }); + }}, + { label: "单位组织机构代码", name: "DWZZJGDM", width: 100, align: "left"}, + { label: "在岗职工总数", name: "ZGZGZS", width: 100, align: "left"}, + { label: "所在区域", name: "SZQY", width: 100, align: "left"}, + { label: "详细地址", name: "XXDZ", width: 100, align: "left"}, + { label: "基地联系人姓名", name: "JDLXRXM", width: 100, align: "left"}, + { label: "联系人电话", name: "LXRDH", width: 100, align: "left"}, + { label: "联系人邮箱", name: "LXRYX", width: 100, align: "left"}, + { label: "基地成立年月", name: "JDCLNY", width: 100, align: "left"}, + { label: "所属行业", name: "SSHY", width: 100, align: "left", + formatterAsync: function (callback, value, row, op,$cell) { + learun.clientdata.getAsync('dataItem', { + key: value, + code: 'sxhydm', + callback: function (_data) { + callback(_data.text); + } + }); + }}, + { label: "所属产业", name: "SSCY", width: 100, align: "left", + formatterAsync: function (callback, value, row, op,$cell) { + learun.clientdata.getAsync('dataItem', { + key: value, + code: 'cydm', + callback: function (_data) { + callback(_data.text); + } + }); + }}, + { label: "面向专业", name: "MXZY", width: 100, align: "left"}, + { label: "合作开始时间", name: "HZKSSJ", width: 100, align: "left"}, + { label: "合作结束时间", name: "HZJSSJ", width: 100, align: "left"}, + { label: "合作协议签署状态", name: "HZXYQSZT", width: 100, align: "left"}, + { label: "合作状态", name: "HZZT", 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 496010bae..d1b2a8320 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,7 @@ + @@ -6999,6 +7000,10 @@ + + + + diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_XWSXJDSJMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_XWSXJDSJMap.cs new file mode 100644 index 000000000..ec5c24829 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_XWSXJDSJMap.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:36 + /// 描 述:校外实训基地数据表 + /// + public class ODS_XWSXJDSJMap : EntityTypeConfiguration + { + public ODS_XWSXJDSJMap() + { + #region 表、主键 + //表 + this.ToTable("ODS_XWSXJDSJ"); + //主键 + 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 60e3c44e7..07aed1834 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,7 @@ + diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ODS_XWSXJDSJEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ODS_XWSXJDSJEntity.cs new file mode 100644 index 000000000..4af9580fc --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ODS_XWSXJDSJEntity.cs @@ -0,0 +1,155 @@ +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:36 + /// 描 述:校外实训基地数据表 + /// + public class ODS_XWSXJDSJEntity + { + #region 实体成员 + /// + /// GZZYQKSJID + /// + [Column("GZZYQKSJID")] + public string GZZYQKSJID { get; set; } + /// + /// 学校机构代码 + /// + [Column("XXJGDM")] + public string XXJGDM { get; set; } + /// + /// 学校机构名称 + /// + [Column("XXJGMC")] + public string XXJGMC { get; set; } + /// + /// 实习实训基地号 + /// + [Column("SXSXJDH")] + public string SXSXJDH { get; set; } + /// + /// 实习实训基地名称 + /// + [Column("SXSXJDMC")] + public string SXSXJDMC { get; set; } + /// + /// 依托单位名称 + /// + [Column("YTDWMC")] + public string YTDWMC { get; set; } + /// + /// 依托单位性质 + /// + [Column("YTDWXZ")] + public string YTDWXZ { get; set; } + /// + /// 单位组织机构代码 + /// + [Column("DWZZJGDM")] + public string DWZZJGDM { get; set; } + /// + /// 在岗职工总数 + /// + [Column("ZGZGZS")] + public int? ZGZGZS { get; set; } + /// + /// 所在区域 + /// + [Column("SZQY")] + public string SZQY { get; set; } + /// + /// 详细地址 + /// + [Column("XXDZ")] + public string XXDZ { get; set; } + /// + /// 基地联系人姓名 + /// + [Column("JDLXRXM")] + public string JDLXRXM { get; set; } + /// + /// 联系人电话 + /// + [Column("LXRDH")] + public int? LXRDH { get; set; } + /// + /// 联系人邮箱 + /// + [Column("LXRYX")] + public int? LXRYX { get; set; } + /// + /// 基地成立年月 + /// + [Column("JDCLNY")] + public string JDCLNY { get; set; } + /// + /// 所属行业 + /// + [Column("SSHY")] + public string SSHY { get; set; } + /// + /// 所属产业 + /// + [Column("SSCY")] + public string SSCY { get; set; } + /// + /// 面向专业 + /// + [Column("MXZY")] + public string MXZY { get; set; } + /// + /// 合作开始时间 + /// + [Column("HZKSSJ")] + public string HZKSSJ { get; set; } + /// + /// 合作结束时间 + /// + [Column("HZJSSJ")] + public string HZJSSJ { get; set; } + /// + /// 合作协议签署状态 + /// + [Column("HZXYQSZT")] + public string HZXYQSZT { get; set; } + /// + /// 合作状态 + /// + [Column("HZZT")] + public string HZZT { 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_xwsxjdsj/ods_xwsxjdsjBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ods_xwsxjdsjBLL.cs new file mode 100644 index 000000000..0150e95f5 --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ods_xwsxjdsjBLL.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:36 + /// 描 述:校外实训基地数据表 + /// + public class ods_xwsxjdsjBLL : ods_xwsxjdsjIBLL + { + private ods_xwsxjdsjService ods_xwsxjdsjService = new ods_xwsxjdsjService(); + + #region 获取数据 + + /// + /// 获取页面显示列表数据 + /// + /// 分页参数 + /// 查询参数 + /// + public IEnumerable GetPageList(Pagination pagination, string queryJson) + { + try + { + return ods_xwsxjdsjService.GetPageList(pagination, queryJson); + } + catch (Exception ex) + { + if (ex is ExceptionEx) + { + throw; + } + else + { + throw ExceptionEx.ThrowBusinessException(ex); + } + } + } + + /// + /// 获取ODS_XWSXJDSJ表实体数据 + /// + /// 主键 + /// + public ODS_XWSXJDSJEntity GetODS_XWSXJDSJEntity(string keyValue) + { + try + { + return ods_xwsxjdsjService.GetODS_XWSXJDSJEntity(keyValue); + } + catch (Exception ex) + { + if (ex is ExceptionEx) + { + throw; + } + else + { + throw ExceptionEx.ThrowBusinessException(ex); + } + } + } + + #endregion + + #region 提交数据 + + /// + /// 删除实体数据 + /// + /// 主键 + public void DeleteEntity(string keyValue) + { + try + { + ods_xwsxjdsjService.DeleteEntity(keyValue); + } + catch (Exception ex) + { + if (ex is ExceptionEx) + { + throw; + } + else + { + throw ExceptionEx.ThrowBusinessException(ex); + } + } + } + + /// + /// 保存实体数据(新增、修改) + /// + /// 主键 + /// 实体 + /// + public void SaveEntity(string keyValue, ODS_XWSXJDSJEntity entity) + { + try + { + ods_xwsxjdsjService.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_xwsxjdsj/ods_xwsxjdsjIBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ods_xwsxjdsjIBLL.cs new file mode 100644 index 000000000..1aacb941e --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ods_xwsxjdsjIBLL.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:36 + /// 描 述:校外实训基地数据表 + /// + public interface ods_xwsxjdsjIBLL + { + #region 获取数据 + + /// + /// 获取页面显示列表数据 + /// + /// 查询参数 + /// + IEnumerable GetPageList(Pagination pagination, string queryJson); + /// + /// 获取ODS_XWSXJDSJ表实体数据 + /// + /// 主键 + /// + ODS_XWSXJDSJEntity GetODS_XWSXJDSJEntity(string keyValue); + #endregion + + #region 提交数据 + + /// + /// 删除实体数据 + /// + /// 主键 + void DeleteEntity(string keyValue); + /// + /// 保存实体数据(新增、修改) + /// + /// 主键 + /// 实体 + void SaveEntity(string keyValue, ODS_XWSXJDSJEntity entity); + #endregion + + } +} diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ods_xwsxjdsjService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ods_xwsxjdsjService.cs new file mode 100644 index 000000000..98c09260f --- /dev/null +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xwsxjdsj/ods_xwsxjdsjService.cs @@ -0,0 +1,166 @@ +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:36 + /// 描 述:校外实训基地数据表 + /// + public class ods_xwsxjdsjService : 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.SXSXJDH, + t.SXSXJDMC, + t.YTDWMC, + t.YTDWXZ, + t.DWZZJGDM, + t.ZGZGZS, + t.SZQY, + t.XXDZ, + t.JDLXRXM, + t.LXRDH, + t.LXRYX, + t.JDCLNY, + t.SSHY, + t.SSCY, + t.MXZY, + t.HZKSSJ, + t.HZJSSJ, + t.HZXYQSZT, + t.HZZT, + t.SJCJSJ + "); + strSql.Append(" FROM ODS_XWSXJDSJ 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_XWSXJDSJ表实体数据 + /// + /// 主键 + /// + public ODS_XWSXJDSJEntity GetODS_XWSXJDSJEntity(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_XWSXJDSJEntity 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 c9dc8b050..829ac97fe 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,10 @@ + + + +