Sfoglia il codice sorgente

党建活动党员干部学习数据表

长阳分支推送专用
zhaochangjiang 2 anni fa
parent
commit
2d069fafa1
13 ha cambiato i file con 819 aggiunte e 0 eliminazioni
  1. +117
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddygbxxsjController.cs
  2. +47
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.cshtml
  3. +52
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.js
  4. +27
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.cshtml
  5. +115
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.js
  6. +5
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
  7. +29
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYGBXXSJMap.cs
  8. +1
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
  9. +95
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ODS_DJHDDYGBXXSJEntity.cs
  10. +125
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjBLL.cs
  11. +48
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjIBLL.cs
  12. +154
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjService.cs
  13. +4
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Learun.Application.TwoDevelopment.csproj

+ 117
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_djhddygbxxsjController.cs Vedi File

@@ -0,0 +1,117 @@
using Learun.Util;
using System.Data;
using Learun.Application.TwoDevelopment.Changyang_zhdn;
using System.Web.Mvc;
using System.Collections.Generic;

namespace Learun.Application.Web.Areas.Changyang_zhdn.Controllers
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 15:17
/// 描 述:党建活动党员干部学习数据表
/// </summary>
public class ods_djhddygbxxsjController : MvcControllerBase
{
private ods_djhddygbxxsjIBLL ods_djhddygbxxsjIBLL = new ods_djhddygbxxsjBLL();

#region 视图功能

/// <summary>
/// 主页面
/// <summary>
/// <returns></returns>
[HttpGet]
public ActionResult Index()
{
return View();
}
/// <summary>
/// 表单页
/// <summary>
/// <returns></returns>
[HttpGet]
public ActionResult Form()
{
return View();
}
#endregion

#region 获取数据

/// <summary>
/// 获取页面显示列表数据
/// </summary>
/// <param name="pagination">分页参数</param>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
[HttpGet]
[AjaxOnly]
public ActionResult GetPageList(string pagination, string queryJson)
{
Pagination paginationobj = pagination.ToObject<Pagination>();
var data = ods_djhddygbxxsjIBLL.GetPageList(paginationobj, queryJson);
var jsonData = new
{
rows = data,
total = paginationobj.total,
page = paginationobj.page,
records = paginationobj.records
};
return Success(jsonData);
}
/// <summary>
/// 获取表单数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
[HttpGet]
[AjaxOnly]
public ActionResult GetFormData(string keyValue)
{
var ODS_DJHDDYGBXXSJData = ods_djhddygbxxsjIBLL.GetODS_DJHDDYGBXXSJEntity( keyValue );
var jsonData = new {
ODS_DJHDDYGBXXSJ = ODS_DJHDDYGBXXSJData,
};
return Success(jsonData);
}
#endregion

#region 提交数据

/// <summary>
/// 删除实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
[HttpPost]
[AjaxOnly]
public ActionResult DeleteForm(string keyValue)
{
ods_djhddygbxxsjIBLL.DeleteEntity(keyValue);
return Success("删除成功!");
}
/// <summary>
/// 保存实体数据(新增、修改)
/// </summary>
/// <param name="keyValue">主键</param>
/// <param name="strEntity">实体</param>
/// <returns></returns>
[HttpPost]
[ValidateAntiForgeryToken]
[AjaxOnly]
public ActionResult SaveForm(string keyValue, string strEntity)
{
ODS_DJHDDYGBXXSJEntity entity = strEntity.ToObject<ODS_DJHDDYGBXXSJEntity>();
ods_djhddygbxxsjIBLL.SaveEntity(keyValue,entity);
if (string.IsNullOrEmpty(keyValue))
{
}
return Success("保存成功!");
}
#endregion

}
}

+ 47
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.cshtml Vedi File

@@ -0,0 +1,47 @@
@{
ViewBag.Title = "党建活动党员干部学习数据表";
Layout = "~/Views/Shared/_Form.cshtml";
}
<div class="lr-form-wrap" id="form">
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">学校机构代码<font face="宋体">*</font></div>
<input id="XXJGDM" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" />
</div>
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">学校机构名称<font face="宋体">*</font></div>
<input id="XXJGMC" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" />
</div>
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">党组织名称<font face="宋体">*</font></div>
<input id="DZZMC" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" />
</div>
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">党组织编号</div>
<input id="DZZBH" type="text" class="form-control" />
</div>
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">党员干部学习培训主要途径和载体</div>
<div id="DYGBXXPXZYTJZT" ></div>
</div>
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">党员干部学习培训内容</div>
<div id="DYGBXXPXNR" ></div>
</div>
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">活动开始时间<font face="宋体">*</font></div>
<input id="HDKSSJ" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" />
</div>
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">活动结束时间<font face="宋体">*</font></div>
<input id="HDJSSJ" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" />
</div>
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">参与人数<font face="宋体">*</font></div>
<input id="CYRS" type="text" class="form-control" isvalid="yes" checkexpession="Num" />
</div>
<div class="col-xs-6 lr-form-item" data-table="ODS_DJHDDYGBXXSJ" >
<div class="lr-form-item-title">数据采集时间<font face="宋体">*</font></div>
<input id="SJCJSJ" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" />
</div>
</div>
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.js")

+ 52
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Form.js Vedi File

@@ -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();
}

+ 27
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.cshtml Vedi File

@@ -0,0 +1,27 @@
@{
ViewBag.Title = "党建活动党员干部学习数据表";
Layout = "~/Views/Shared/_Index.cshtml";
}
<div class="lr-layout " >
<div class="lr-layout-center">
<div class="lr-layout-wrap lr-layout-wrap-notitle ">
<div class="lr-layout-tool">
<div class="lr-layout-tool-left">
</div>
<div class="lr-layout-tool-right">
<div class=" btn-group btn-group-sm">
<a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a>
</div>
<div class=" btn-group btn-group-sm" learun-authorize="yes">
<a id="lr_add" class="btn btn-default"><i class="fa fa-plus"></i>&nbsp;新增</a>
<a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i>&nbsp;编辑</a>
<a id="lr_delete" class="btn btn-default"><i class="fa fa-trash-o"></i>&nbsp;删除</a>
<a id="lr_print" class="btn btn-default"><i class="fa fa-print"></i>&nbsp;打印</a>
</div>
</div>
</div>
<div class="lr-layout-body" id="gridtable"></div>
</div>
</div>
</div>
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.js")

+ 115
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_djhddygbxxsj/Index.js Vedi File

@@ -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();
}

+ 5
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj Vedi File

@@ -877,6 +877,7 @@
<Compile Include="Areas\EducationalAdministration\Controllers\ScoreCheckInfoController.cs" />
<Compile Include="Areas\EducationalAdministration\Controllers\WelfarePositionController.cs" />
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_dyfzqkjcsjController.cs" />
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_djhddygbxxsjController.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\DropOutIndex.js" />
@@ -6944,6 +6945,10 @@
<Content Include="Areas\Changyang_zhdn\Views\ods_dyfzqkjcsj\Index.js" />
<Content Include="Areas\Changyang_zhdn\Views\ods_dyfzqkjcsj\Form.cshtml" />
<Content Include="Areas\Changyang_zhdn\Views\ods_dyfzqkjcsj\Form.js" />
<Content Include="Areas\Changyang_zhdn\Views\ods_djhddygbxxsj\Index.cshtml" />
<Content Include="Areas\Changyang_zhdn\Views\ods_djhddygbxxsj\Index.js" />
<Content Include="Areas\Changyang_zhdn\Views\ods_djhddygbxxsj\Form.cshtml" />
<Content Include="Areas\Changyang_zhdn\Views\ods_djhddygbxxsj\Form.js" />
</ItemGroup>
<ItemGroup>
<Folder Include="Areas\Changyang_zhdn\Controllers\" />


+ 29
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_DJHDDYGBXXSJMap.cs Vedi File

@@ -0,0 +1,29 @@
using Learun.Application.TwoDevelopment.Changyang_zhdn;
using System.Data.Entity.ModelConfiguration;

namespace Learun.Application.Mapping
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 15:17
/// 描 述:党建活动党员干部学习数据表
/// </summary>
public class ODS_DJHDDYGBXXSJMap : EntityTypeConfiguration<ODS_DJHDDYGBXXSJEntity>
{
public ODS_DJHDDYGBXXSJMap()
{
#region 表、主键
//表
this.ToTable("ODS_DJHDDYGBXXSJ");
//主键
this.HasKey(t => t.GZZYQKSJID);
#endregion

#region 配置关系
#endregion
}
}
}


+ 1
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj Vedi File

@@ -636,6 +636,7 @@
<Compile Include="EducationalAdministration\ScoreCheckInfoMap.cs" />
<Compile Include="EducationalAdministration\WelfarePositionMap.cs" />
<Compile Include="Changyang_zhdn\ODS_DYFZQKJCSJMap.cs" />
<Compile Include="Changyang_zhdn\ODS_DJHDDYGBXXSJMap.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Learun.Application.Organization\Learun.Application.Organization.csproj">


+ 95
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ODS_DJHDDYGBXXSJEntity.cs Vedi File

@@ -0,0 +1,95 @@
using Learun.Util;
using System;
using System.ComponentModel.DataAnnotations.Schema;

namespace Learun.Application.TwoDevelopment.Changyang_zhdn
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 15:17
/// 描 述:党建活动党员干部学习数据表
/// </summary>
public class ODS_DJHDDYGBXXSJEntity
{
#region 实体成员
/// <summary>
/// GZZYQKSJID
/// </summary>
[Column("GZZYQKSJID")]
public string GZZYQKSJID { get; set; }
/// <summary>
/// XXJGDM
/// </summary>
[Column("XXJGDM")]
public string XXJGDM { get; set; }
/// <summary>
/// XXJGMC
/// </summary>
[Column("XXJGMC")]
public string XXJGMC { get; set; }
/// <summary>
/// DZZMC
/// </summary>
[Column("DZZMC")]
public string DZZMC { get; set; }
/// <summary>
/// DZZBH
/// </summary>
[Column("DZZBH")]
public string DZZBH { get; set; }
/// <summary>
/// DYGBXXPXZYTJZT
/// </summary>
[Column("DYGBXXPXZYTJZT")]
public string DYGBXXPXZYTJZT { get; set; }
/// <summary>
/// DYGBXXPXNR
/// </summary>
[Column("DYGBXXPXNR")]
public string DYGBXXPXNR { get; set; }
/// <summary>
/// HDKSSJ
/// </summary>
[Column("HDKSSJ")]
public string HDKSSJ { get; set; }
/// <summary>
/// HDJSSJ
/// </summary>
[Column("HDJSSJ")]
public string HDJSSJ { get; set; }
/// <summary>
/// CYRS
/// </summary>
[Column("CYRS")]
public int? CYRS { get; set; }
/// <summary>
/// SJCJSJ
/// </summary>
[Column("SJCJSJ")]
public string SJCJSJ { get; set; }
#endregion

#region 扩展操作
/// <summary>
/// 新增调用
/// </summary>
public void Create()
{
this.GZZYQKSJID = Guid.NewGuid().ToString();
}
/// <summary>
/// 编辑调用
/// </summary>
/// <param name="keyValue"></param>
public void Modify(string keyValue)
{
this.GZZYQKSJID = keyValue;
}
#endregion
#region 扩展字段
#endregion
}
}


+ 125
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjBLL.cs Vedi File

@@ -0,0 +1,125 @@
using Learun.Util;
using System;
using System.Data;
using System.Collections.Generic;

namespace Learun.Application.TwoDevelopment.Changyang_zhdn
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 15:17
/// 描 述:党建活动党员干部学习数据表
/// </summary>
public class ods_djhddygbxxsjBLL : ods_djhddygbxxsjIBLL
{
private ods_djhddygbxxsjService ods_djhddygbxxsjService = new ods_djhddygbxxsjService();

#region 获取数据

/// <summary>
/// 获取页面显示列表数据
/// </summary>
/// <param name="pagination">分页参数</param>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
public IEnumerable<ODS_DJHDDYGBXXSJEntity> 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);
}
}
}

/// <summary>
/// 获取ODS_DJHDDYGBXXSJ表实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
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 提交数据

/// <summary>
/// 删除实体数据
/// </summary>
/// <param name="keyValue">主键</param>
public void DeleteEntity(string keyValue)
{
try
{
ods_djhddygbxxsjService.DeleteEntity(keyValue);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowBusinessException(ex);
}
}
}

/// <summary>
/// 保存实体数据(新增、修改)
/// </summary>
/// <param name="keyValue">主键</param>
/// <param name="entity">实体</param>
/// <returns></returns>
public void SaveEntity(string keyValue, ODS_DJHDDYGBXXSJEntity entity)
{
try
{
ods_djhddygbxxsjService.SaveEntity(keyValue, entity);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowBusinessException(ex);
}
}
}

#endregion

}
}

+ 48
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjIBLL.cs Vedi File

@@ -0,0 +1,48 @@
using Learun.Util;
using System.Data;
using System.Collections.Generic;

namespace Learun.Application.TwoDevelopment.Changyang_zhdn
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 15:17
/// 描 述:党建活动党员干部学习数据表
/// </summary>
public interface ods_djhddygbxxsjIBLL
{
#region 获取数据

/// <summary>
/// 获取页面显示列表数据
/// </summary>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
IEnumerable<ODS_DJHDDYGBXXSJEntity> GetPageList(Pagination pagination, string queryJson);
/// <summary>
/// 获取ODS_DJHDDYGBXXSJ表实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
ODS_DJHDDYGBXXSJEntity GetODS_DJHDDYGBXXSJEntity(string keyValue);
#endregion

#region 提交数据

/// <summary>
/// 删除实体数据
/// </summary>
/// <param name="keyValue">主键</param>
void DeleteEntity(string keyValue);
/// <summary>
/// 保存实体数据(新增、修改)
/// </summary>
/// <param name="keyValue">主键</param>
/// <param name="entity">实体</param>
void SaveEntity(string keyValue, ODS_DJHDDYGBXXSJEntity entity);
#endregion

}
}

+ 154
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_djhddygbxxsj/ods_djhddygbxxsjService.cs Vedi File

@@ -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
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 15:17
/// 描 述:党建活动党员干部学习数据表
/// </summary>
public class ods_djhddygbxxsjService : RepositoryFactory
{
#region 获取数据

/// <summary>
/// 获取页面显示列表数据
/// </summary>
/// <param name="pagination">查询参数</param>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
public IEnumerable<ODS_DJHDDYGBXXSJEntity> 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<ODS_DJHDDYGBXXSJEntity>(strSql.ToString(),dp, pagination);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowServiceException(ex);
}
}
}

/// <summary>
/// 获取ODS_DJHDDYGBXXSJ表实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
public ODS_DJHDDYGBXXSJEntity GetODS_DJHDDYGBXXSJEntity(string keyValue)
{
try
{
return this.BaseRepository("changyang").FindEntity<ODS_DJHDDYGBXXSJEntity>(keyValue);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowServiceException(ex);
}
}
}

#endregion

#region 提交数据

/// <summary>
/// 删除实体数据
/// </summary>
/// <param name="keyValue">主键</param>
public void DeleteEntity(string keyValue)
{
try
{
this.BaseRepository("changyang").Delete<ODS_DJHDDYGBXXSJEntity>(t=>t.GZZYQKSJID == keyValue);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowServiceException(ex);
}
}
}

/// <summary>
/// 保存实体数据(新增、修改)
/// </summary>
/// <param name="keyValue">主键</param>
/// <param name="entity">实体</param>
public void SaveEntity(string keyValue, ODS_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

}
}

+ 4
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Learun.Application.TwoDevelopment.csproj Vedi File

@@ -1967,6 +1967,10 @@
<Compile Include="Changyang_zhdn\ods_dyfzqkjcsj\ods_dyfzqkjcsjService.cs" />
<Compile Include="Changyang_zhdn\ods_dyfzqkjcsj\ods_dyfzqkjcsjBLL.cs" />
<Compile Include="Changyang_zhdn\ods_dyfzqkjcsj\ods_dyfzqkjcsjIBLL.cs" />
<Compile Include="Changyang_zhdn\ods_djhddygbxxsj\ODS_DJHDDYGBXXSJEntity.cs" />
<Compile Include="Changyang_zhdn\ods_djhddygbxxsj\ods_djhddygbxxsjService.cs" />
<Compile Include="Changyang_zhdn\ods_djhddygbxxsj\ods_djhddygbxxsjBLL.cs" />
<Compile Include="Changyang_zhdn\ods_djhddygbxxsj\ods_djhddygbxxsjIBLL.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Learun.Application.Organization\Learun.Application.Organization.csproj">


Caricamento…
Annulla
Salva