Преглед изворни кода

新增 党员分组管理

yanshi
zhangli пре 3 година
родитељ
комит
d66ae7bab9
17 измењених фајлова са 924 додато и 3 уклоњено
  1. +117
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Controllers/DT_PartyMemberGroupController.cs
  2. +11
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Controllers/PartyMemberController.cs
  3. +31
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/DT_PartyMemberGroup/Form.cshtml
  4. +70
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/DT_PartyMemberGroup/Form.js
  5. +41
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/DT_PartyMemberGroup/Index.cshtml
  6. +141
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/DT_PartyMemberGroup/Index.js
  7. +5
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
  8. +1
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
  9. +29
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/PersonnelManagement/DT_PartyMemberGroupMap.cs
  10. +4
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Learun.Application.TwoDevelopment.csproj
  11. +125
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/DT_PartyMemberGroup/DT_PartyMemberGroupBLL.cs
  12. +87
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/DT_PartyMemberGroup/DT_PartyMemberGroupEntity.cs
  13. +48
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/DT_PartyMemberGroup/DT_PartyMemberGroupIBLL.cs
  14. +160
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/DT_PartyMemberGroup/DT_PartyMemberGroupService.cs
  15. +21
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/PartyMember/PartyMemberBLL.cs
  16. +1
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/PartyMember/PartyMemberIBLL.cs
  17. +32
    -3
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/PartyMember/PartyMemberService.cs

+ 117
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Controllers/DT_PartyMemberGroupController.cs Прегледај датотеку

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

namespace Learun.Application.Web.Areas.PersonnelManagement.Controllers
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2021-12-07 11:08
/// 描 述:党员分组管理
/// </summary>
public class DT_PartyMemberGroupController : MvcControllerBase
{
private DT_PartyMemberGroupIBLL dT_PartyMemberGroupIBLL = new DT_PartyMemberGroupBLL();

#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 = dT_PartyMemberGroupIBLL.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 DT_PartyMemberGroupData = dT_PartyMemberGroupIBLL.GetDT_PartyMemberGroupEntity( keyValue );
var jsonData = new {
DT_PartyMemberGroup = DT_PartyMemberGroupData,
};
return Success(jsonData);
}
#endregion

#region 提交数据

/// <summary>
/// 删除实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
[HttpPost]
[AjaxOnly]
public ActionResult DeleteForm(string keyValue)
{
dT_PartyMemberGroupIBLL.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)
{
DT_PartyMemberGroupEntity entity = strEntity.ToObject<DT_PartyMemberGroupEntity>();
dT_PartyMemberGroupIBLL.SaveEntity(keyValue,entity);
if (string.IsNullOrEmpty(keyValue))
{
}
return Success("保存成功!");
}
#endregion

}
}

+ 11
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Controllers/PartyMemberController.cs Прегледај датотеку

@@ -62,6 +62,17 @@ namespace Learun.Application.Web.Areas.PersonnelManagement.Controllers
return Success(jsonData);
}
/// <summary>
/// 获取数据
/// <summary>
/// <returns></returns>
[HttpGet]
[AjaxOnly]
public ActionResult GetList(string strWhere)
{
var PartyMemberData = partyMemberIBLL.GetList(strWhere);
return Success(PartyMemberData);
}
/// <summary>
/// 获取表单数据
/// <summary>
/// <returns></returns>


+ 31
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/DT_PartyMemberGroup/Form.cshtml Прегледај датотеку

@@ -0,0 +1,31 @@
@{
ViewBag.Title = "党员分组管理";
Layout = "~/Views/Shared/_Form.cshtml";
}
<div class="lr-form-wrap" id="form">
<div class="col-xs-12 lr-form-item" data-table="DT_PartyMemberGroup" >
<div class="lr-form-item-title">名称<font face="宋体">*</font></div>
<input id="Name" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" />
</div>
<div class="col-xs-12 lr-form-item" data-table="DT_PartyMemberGroup" >
<div class="lr-form-item-title">编号</div>
<input id="EnCode" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="DT_PartyMemberGroup" >
<div class="lr-form-item-title">组长<font face="宋体">*</font></div>
<div id="GroupLeader" isvalid="yes" checkexpession="NotNull" ></div>
</div>
<div class="col-xs-12 lr-form-item" data-table="DT_PartyMemberGroup" >
<div class="lr-form-item-title">组员<font face="宋体">*</font></div>
<div id="PartyMember" isvalid="yes" checkexpession="NotNull" ></div>
</div>
<div class="col-xs-12 lr-form-item" data-table="DT_PartyMemberGroup" >
<div class="lr-form-item-title">排序</div>
<input id="GOrder" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="DT_PartyMemberGroup" >
<div class="lr-form-item-title">备注</div>
<textarea id="Remark" class="form-control" style="height:100px;" ></textarea>
</div>
</div>
@Html.AppendJsFile("/Areas/PersonnelManagement/Views/DT_PartyMemberGroup/Form.js")

+ 70
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/DT_PartyMemberGroup/Form.js Прегледај датотеку

@@ -0,0 +1,70 @@
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
* 创建人:超级管理员
* 日 期:2021-12-07 11:08
* 描 述:党员分组管理
*/
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 () {
//组长
$('#GroupLeader').lrselect(
{
allowSearch: true,
url: top.$.rootUrl + '/PersonnelManagement/PartyMember/GetList',
param: { strWhere: " CheckStatus=1 " },
value: "ID",
text: "Name"
});
//组员
$('#PartyMember').lrselect({
allowSearch: true,
type: 'multiple',
url: top.$.rootUrl + '/PersonnelManagement/PartyMember/GetList',
param: { strWhere: " CheckStatus=1 " },
value: "ID",
text: "Name"

});
},
initData: function () {
if (!!keyValue) {
$.lrSetForm(top.$.rootUrl + '/PersonnelManagement/DT_PartyMemberGroup/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 + '/PersonnelManagement/DT_PartyMemberGroup/SaveForm?keyValue=' + keyValue, postData, function (res) {
// 保存成功后才回调
if (!!callBack) {
callBack();
}
});
};
page.init();
}

+ 41
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/DT_PartyMemberGroup/Index.cshtml Прегледај датотеку

@@ -0,0 +1,41 @@
@{
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 class="lr-layout-tool-item">
<div id="multiple_condition_query">
<div class="lr-query-formcontent">
<div class="col-xs-12 lr-form-item">
<div class="lr-form-item-title">名称</div>
<input id="Name" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item">
<div class="lr-form-item-title">编号</div>
<input id="EnCode" type="text" class="form-control" />
</div>
</div>
</div>
</div>
</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/PersonnelManagement/Views/DT_PartyMemberGroup/Index.js")

+ 141
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/DT_PartyMemberGroup/Index.js Прегледај датотеку

@@ -0,0 +1,141 @@
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
* 创建人:超级管理员
* 日 期:2021-12-07 11:08
* 描 述:党员分组管理
*/
var refreshGirdData;
var bootstrap = function ($, learun) {
"use strict";
var page = {
init: function () {
page.initGird();
page.bind();
},
bind: function () {
$('#multiple_condition_query').lrMultipleQuery(function (queryJson) {
page.search(queryJson);
}, 220, 400);
// 刷新
$('#lr_refresh').on('click', function () {
location.reload();
});
// 新增
$('#lr_add').on('click', function () {
learun.layerForm({
id: 'form',
title: '新增',
url: top.$.rootUrl + '/PersonnelManagement/DT_PartyMemberGroup/Form',
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
});
// 编辑
$('#lr_edit').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('Id');
if (learun.checkrow(keyValue)) {
learun.layerForm({
id: 'form',
title: '编辑',
url: top.$.rootUrl + '/PersonnelManagement/DT_PartyMemberGroup/Form?keyValue=' + keyValue,
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
}
});
// 删除
$('#lr_delete').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('Id');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认删除该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/PersonnelManagement/DT_PartyMemberGroup/DeleteForm', { keyValue: keyValue }, function () {
refreshGirdData();
});
}
});
}
});
// 打印
$('#lr_print').on('click', function () {
$('#gridtable').jqprintTable();
});
},
// 初始化列表
initGird: function () {
$('#gridtable').lrAuthorizeJfGrid({
url: top.$.rootUrl + '/PersonnelManagement/DT_PartyMemberGroup/GetPageList',
headData: [
{ label: "名称", name: "Name", width: 100, align: "left" },
{ label: "编号", name: "EnCode", width: 100, align: "left" },
{
label: "组长", name: "GroupLeader", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {
learun.clientdata.getAsync('custmerData', {
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'PartyMember',
key: value,
keyId: 'id',
callback: function (_data) {
callback(_data['name']);
}
});

}
},
{
label: "组员", name: "PartyMember", width: 100, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {
if (value.indexOf(',') != -1) {
var content = '';
var arr = value.split(',');
for (var i = 0; i < arr.length; i++) {
learun.clientdata.getAsync('custmerData', {
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'PartyMember',
key: arr[i],
keyId: 'id',
callback: function (_data) {
content += _data['name'] + ',';
}
});

}
content = content.substring(0, content.length - 1);
callback(content);
} else {
learun.clientdata.getAsync('custmerData', {
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'PartyMember',
key: value,
keyId: 'id',
callback: function (_data) {
callback(_data['name']);
}
});
}
}
},
{ label: "排序", name: "GOrder", width: 100, align: "left" },
{ label: "备注", name: "Remark", width: 100, align: "left" },
],
mainId: 'Id',
isPage: true,
sidx: 'GOrder',
sord: 'ASC'
});
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 Прегледај датотеку

@@ -873,6 +873,7 @@
<Compile Include="Areas\CustomFunction\Controllers\BudgetApplyController.cs" />
<Compile Include="Areas\CustomFunction\Controllers\CostInvoiceController.cs" />
<Compile Include="Areas\EducationalAdministration\Controllers\RegisterInfoController.cs" />
<Compile Include="Areas\PersonnelManagement\Controllers\DT_PartyMemberGroupController.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\DropOutIndex.js" />
@@ -6739,6 +6740,10 @@
<Content Include="Areas\EducationalAdministration\Views\RegisterInfo\Index.js" />
<Content Include="Areas\EducationalAdministration\Views\RegisterInfo\Form.cshtml" />
<Content Include="Areas\EducationalAdministration\Views\RegisterInfo\Form.js" />
<Content Include="Areas\PersonnelManagement\Views\DT_PartyMemberGroup\Index.cshtml" />
<Content Include="Areas\PersonnelManagement\Views\DT_PartyMemberGroup\Index.js" />
<Content Include="Areas\PersonnelManagement\Views\DT_PartyMemberGroup\Form.cshtml" />
<Content Include="Areas\PersonnelManagement\Views\DT_PartyMemberGroup\Form.js" />
</ItemGroup>
<ItemGroup>
<Folder Include="Areas\LR_Desktop\Models\" />


+ 1
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj Прегледај датотеку

@@ -622,6 +622,7 @@
<Compile Include="CustomFunction\BudgetApplyMap.cs" />
<Compile Include="CustomFunction\CostInvoiceMap.cs" />
<Compile Include="EducationalAdministration\RegisterInfoMap.cs" />
<Compile Include="PersonnelManagement\DT_PartyMemberGroupMap.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Learun.Application.Organization\Learun.Application.Organization.csproj">


+ 29
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/PersonnelManagement/DT_PartyMemberGroupMap.cs Прегледај датотеку

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

namespace Learun.Application.Mapping
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2021-12-07 11:08
/// 描 述:党员分组管理
/// </summary>
public class DT_PartyMemberGroupMap : EntityTypeConfiguration<DT_PartyMemberGroupEntity>
{
public DT_PartyMemberGroupMap()
{
#region 表、主键
//表
this.ToTable("DT_PARTYMEMBERGROUP");
//主键
this.HasKey(t => t.Id);
#endregion

#region 配置关系
#endregion
}
}
}


+ 4
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Learun.Application.TwoDevelopment.csproj Прегледај датотеку

@@ -1907,6 +1907,10 @@
<Compile Include="EducationalAdministration\RegisterInfo\RegisterInfoService.cs" />
<Compile Include="EducationalAdministration\RegisterInfo\RegisterInfoBLL.cs" />
<Compile Include="EducationalAdministration\RegisterInfo\RegisterInfoIBLL.cs" />
<Compile Include="PersonnelManagement\DT_PartyMemberGroup\DT_PartyMemberGroupEntity.cs" />
<Compile Include="PersonnelManagement\DT_PartyMemberGroup\DT_PartyMemberGroupService.cs" />
<Compile Include="PersonnelManagement\DT_PartyMemberGroup\DT_PartyMemberGroupBLL.cs" />
<Compile Include="PersonnelManagement\DT_PartyMemberGroup\DT_PartyMemberGroupIBLL.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Learun.Application.Organization\Learun.Application.Organization.csproj">


+ 125
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/DT_PartyMemberGroup/DT_PartyMemberGroupBLL.cs Прегледај датотеку

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

namespace Learun.Application.TwoDevelopment.PersonnelManagement
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2021-12-07 11:08
/// 描 述:党员分组管理
/// </summary>
public class DT_PartyMemberGroupBLL : DT_PartyMemberGroupIBLL
{
private DT_PartyMemberGroupService dT_PartyMemberGroupService = new DT_PartyMemberGroupService();

#region 获取数据

/// <summary>
/// 获取页面显示列表数据
/// </summary>
/// <param name="pagination">分页参数</param>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
public IEnumerable<DT_PartyMemberGroupEntity> GetPageList(Pagination pagination, string queryJson)
{
try
{
return dT_PartyMemberGroupService.GetPageList(pagination, queryJson);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowBusinessException(ex);
}
}
}

/// <summary>
/// 获取DT_PartyMemberGroup表实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
public DT_PartyMemberGroupEntity GetDT_PartyMemberGroupEntity(string keyValue)
{
try
{
return dT_PartyMemberGroupService.GetDT_PartyMemberGroupEntity(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
{
dT_PartyMemberGroupService.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, DT_PartyMemberGroupEntity entity)
{
try
{
dT_PartyMemberGroupService.SaveEntity(keyValue, entity);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowBusinessException(ex);
}
}
}

#endregion

}
}

+ 87
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/DT_PartyMemberGroup/DT_PartyMemberGroupEntity.cs Прегледај датотеку

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

namespace Learun.Application.TwoDevelopment.PersonnelManagement
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2021-12-07 11:08
/// 描 述:党员分组管理
/// </summary>
public class DT_PartyMemberGroupEntity
{
#region 实体成员
/// <summary>
/// Id
/// </summary>
[Column("ID")]
public string Id { get; set; }
/// <summary>
/// 组名
/// </summary>
[Column("NAME")]
public string Name { get; set; }
/// <summary>
/// 编号
/// </summary>
[Column("ENCODE")]
public string EnCode { get; set; }
/// <summary>
/// 成员
/// </summary>
[Column("PARTYMEMBER")]
public string PartyMember { get; set; }
/// <summary>
/// 组长
/// </summary>
[Column("GROUPLEADER")]
public string GroupLeader { get; set; }
/// <summary>
/// 排序
/// </summary>
[Column("GORDER")]
public int? GOrder { get; set; }
/// <summary>
/// 备注
/// </summary>
[Column("REMARK")]
public string Remark { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Column("CREATETIME")]
public DateTime? CreateTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
[Column("CREATEUSERID")]
public string CreateUserId { get; set; }
#endregion

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


+ 48
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/DT_PartyMemberGroup/DT_PartyMemberGroupIBLL.cs Прегледај датотеку

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

namespace Learun.Application.TwoDevelopment.PersonnelManagement
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2021-12-07 11:08
/// 描 述:党员分组管理
/// </summary>
public interface DT_PartyMemberGroupIBLL
{
#region 获取数据

/// <summary>
/// 获取页面显示列表数据
/// </summary>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
IEnumerable<DT_PartyMemberGroupEntity> GetPageList(Pagination pagination, string queryJson);
/// <summary>
/// 获取DT_PartyMemberGroup表实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
DT_PartyMemberGroupEntity GetDT_PartyMemberGroupEntity(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, DT_PartyMemberGroupEntity entity);
#endregion

}
}

+ 160
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/DT_PartyMemberGroup/DT_PartyMemberGroupService.cs Прегледај датотеку

@@ -0,0 +1,160 @@
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.PersonnelManagement
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2021-12-07 11:08
/// 描 述:党员分组管理
/// </summary>
public class DT_PartyMemberGroupService : RepositoryFactory
{
#region 获取数据

/// <summary>
/// 获取页面显示列表数据
/// </summary>
/// <param name="pagination">查询参数</param>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
public IEnumerable<DT_PartyMemberGroupEntity> GetPageList(Pagination pagination, string queryJson)
{
try
{
var strSql = new StringBuilder();
strSql.Append("SELECT ");
strSql.Append(@"
t.Id,
t.Name,
t.EnCode,
t.GroupLeader,
t.PartyMember,
t.GOrder,
t.Remark
");
strSql.Append(" FROM DT_PartyMemberGroup t ");
strSql.Append(" WHERE 1=1 ");
var queryParam = queryJson.ToJObject();
// 虚拟参数
var dp = new DynamicParameters(new { });
if (!queryParam["Name"].IsEmpty())
{
dp.Add("Name", "%" + queryParam["Name"].ToString() + "%", DbType.String);
strSql.Append(" AND t.Name Like @Name ");
}
if (!queryParam["EnCode"].IsEmpty())
{
dp.Add("EnCode", "%" + queryParam["EnCode"].ToString() + "%", DbType.String);
strSql.Append(" AND t.EnCode Like @EnCode ");
}
return this.BaseRepository("CollegeMIS").FindList<DT_PartyMemberGroupEntity>(strSql.ToString(),dp, pagination);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowServiceException(ex);
}
}
}

/// <summary>
/// 获取DT_PartyMemberGroup表实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
public DT_PartyMemberGroupEntity GetDT_PartyMemberGroupEntity(string keyValue)
{
try
{
return this.BaseRepository("CollegeMIS").FindEntity<DT_PartyMemberGroupEntity>(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("CollegeMIS").Delete<DT_PartyMemberGroupEntity>(t=>t.Id == 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, DT_PartyMemberGroupEntity entity)
{
try
{
if (!string.IsNullOrEmpty(keyValue))
{
entity.Modify(keyValue);
this.BaseRepository("CollegeMIS").Update(entity);
}
else
{
entity.Create();
this.BaseRepository("CollegeMIS").Insert(entity);
}
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowServiceException(ex);
}
}
}

#endregion

}
}

+ 21
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/PartyMember/PartyMemberBLL.cs Прегледај датотеку

@@ -42,6 +42,27 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement
}
}

public IEnumerable<PartyMemberEntity> GetList(string strWhere)
{
{
try
{
return partyMemberService.GetList(strWhere);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowBusinessException(ex);
}
}
}
}

/// <summary>
/// 获取PartyMember表实体数据
/// <param name="keyValue">主键</param>


+ 1
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/PartyMember/PartyMemberIBLL.cs Прегледај датотеку

@@ -21,6 +21,7 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
IEnumerable<PartyMemberEntity> GetPageList(Pagination pagination, string queryJson);
IEnumerable<PartyMemberEntity> GetList(string strWhere);
/// <summary>
/// 获取PartyMember表实体数据
/// <param name="keyValue">主键</param>


+ 32
- 3
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/PartyMember/PartyMemberService.cs Прегледај датотеку

@@ -4,6 +4,7 @@ using Learun.Util;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;

namespace Learun.Application.TwoDevelopment.PersonnelManagement
@@ -42,10 +43,10 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement
}
if (!queryParam["Department"].IsEmpty())
{
dp.Add("Department",queryParam["Department"].ToString(), DbType.String);
dp.Add("Department", queryParam["Department"].ToString(), DbType.String);
strSql.Append(" AND t.Department = @Department ");
}
return this.BaseRepository("CollegeMIS").FindList<PartyMemberEntity>(strSql.ToString(),dp, pagination);
return this.BaseRepository("CollegeMIS").FindList<PartyMemberEntity>(strSql.ToString(), dp, pagination);
}
catch (Exception ex)
{
@@ -60,6 +61,34 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement
}
}

/// <summary>
/// 获取数据
/// <summary>
/// <returns></returns>
public IEnumerable<PartyMemberEntity> GetList(string strWhere)
{
try
{
string sql = "select * from PartyMember";
if (!string.IsNullOrEmpty(strWhere))
{
sql += $" where {strWhere}";
}

return this.BaseRepository("CollegeMIS").FindList<PartyMemberEntity>(sql);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowServiceException(ex);
}
}
}
/// <summary>
/// 获取PartyMember表实体数据
/// <param name="keyValue">主键</param>
@@ -97,7 +126,7 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement
{
try
{
this.BaseRepository("CollegeMIS").Delete<PartyMemberEntity>(t=>t.ID == keyValue);
this.BaseRepository("CollegeMIS").Delete<PartyMemberEntity>(t => t.ID == keyValue);
}
catch (Exception ex)
{


Loading…
Откажи
Сачувај