Przeglądaj źródła

中职学校概况基础数据表

长阳分支推送专用
lifeng 2 lat temu
rodzic
commit
4b7d078402
13 zmienionych plików z 801 dodań i 0 usunięć
  1. +117
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/ods_zzxxgkjcsjController.cs
  2. +15
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/Form.cshtml
  3. +51
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/Form.js
  4. +26
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/Index.cshtml
  5. +94
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/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/LR_Desktop/ODS_ZZXXGKJCSJMap.cs
  8. +1
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
  9. +140
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/ods_zzxxgkjcsj/ODS_ZZXXGKJCSJEntity.cs
  10. +125
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/ods_zzxxgkjcsj/ods_zzxxgkjcsjBLL.cs
  11. +48
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/ods_zzxxgkjcsj/ods_zzxxgkjcsjIBLL.cs
  12. +146
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/ods_zzxxgkjcsj/ods_zzxxgkjcsjService.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/LR_Desktop/Controllers/ods_zzxxgkjcsjController.cs Wyświetl plik

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

namespace Learun.Application.Web.Areas.LR_Desktop.Controllers
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 10:20
/// 描 述:中职学校概况基础数据表
/// </summary>
public class ods_zzxxgkjcsjController : MvcControllerBase
{
private ods_zzxxgkjcsjIBLL ods_zzxxgkjcsjIBLL = new ods_zzxxgkjcsjBLL();

#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_zzxxgkjcsjIBLL.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_ZZXXGKJCSJData = ods_zzxxgkjcsjIBLL.GetODS_ZZXXGKJCSJEntity( keyValue );
var jsonData = new {
ODS_ZZXXGKJCSJ = ODS_ZZXXGKJCSJData,
};
return Success(jsonData);
}
#endregion

#region 提交数据

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

}
}

+ 15
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/Form.cshtml Wyświetl plik

@@ -0,0 +1,15 @@
@{
ViewBag.Title = "中职学校概况基础数据表";
Layout = "~/Views/Shared/_Form.cshtml";
}
<div class="lr-form-wrap" id="form">
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZXXGKJCSJ" >
<div class="lr-form-item-title">省机构编码</div>
<input id="PROVINCEJGBM" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_ZZXXGKJCSJ" >
<div class="lr-form-item-title">下拉框</div>
<div id="XXLB" ></div>
</div>
</div>
@Html.AppendJsFile("/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/Form.js")

+ 51
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/Form.js Wyświetl plik

@@ -0,0 +1,51 @@
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
* 创建人:超级管理员
* 日 期:2022-11-09 10:20
* 描 述:中职学校概况基础数据表
*/
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 () {
$('#XXLB').lrDataItemSelect({ code: 'xxlbdm' });
},
initData: function () {
if (!!keyValue) {
$.lrSetForm(top.$.rootUrl + '/LR_Desktop/ods_zzxxgkjcsj/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 + '/LR_Desktop/ods_zzxxgkjcsj/SaveForm?keyValue=' + keyValue, postData, function (res) {
// 保存成功后才回调
if (!!callBack) {
callBack();
}
});
};
page.init();
}

+ 26
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/Index.cshtml Wyświetl plik

@@ -0,0 +1,26 @@
@{
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>
</div>
</div>
</div>
<div class="lr-layout-body" id="gridtable"></div>
</div>
</div>
</div>
@Html.AppendJsFile("/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/Index.js")

+ 94
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/ods_zzxxgkjcsj/Index.js Wyświetl plik

@@ -0,0 +1,94 @@
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
* 创建人:超级管理员
* 日 期:2022-11-09 10:20
* 描 述:中职学校概况基础数据表
*/
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 + '/LR_Desktop/ods_zzxxgkjcsj/Form',
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
});
// 编辑
$('#lr_edit').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('XYGKJCSJID');
if (learun.checkrow(keyValue)) {
learun.layerForm({
id: 'form',
title: '编辑',
url: top.$.rootUrl + '/LR_Desktop/ods_zzxxgkjcsj/Form?keyValue=' + keyValue,
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
}
});
// 删除
$('#lr_delete').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('XYGKJCSJID');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认删除该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/LR_Desktop/ods_zzxxgkjcsj/DeleteForm', { keyValue: keyValue}, function () {
refreshGirdData();
});
}
});
}
});
},
// 初始化列表
initGird: function () {
$('#gridtable').lrAuthorizeJfGrid({
url: top.$.rootUrl + '/LR_Desktop/ods_zzxxgkjcsj/GetPageList',
headData: [
{ label: "省机构编码", name: "PROVINCEJGBM", width: 100, align: "left"},
{ label: "下拉框", name: "XXLB", width: 100, align: "left",
formatterAsync: function (callback, value, row, op,$cell) {
learun.clientdata.getAsync('dataItem', {
key: value,
code: 'xxlbdm',
callback: function (_data) {
callback(_data.text);
}
});
}},
],
mainId:'XYGKJCSJID',
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 Wyświetl plik

@@ -875,6 +875,7 @@
<Compile Include="Areas\EducationalAdministration\Controllers\TE_MaterialOutboundController.cs" />
<Compile Include="Areas\EducationalAdministration\Controllers\ScoreCheckInfoController.cs" />
<Compile Include="Areas\EducationalAdministration\Controllers\WelfarePositionController.cs" />
<Compile Include="Areas\LR_Desktop\Controllers\ods_zzxxgkjcsjController.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\DropOutIndex.js" />
@@ -6937,6 +6938,10 @@
<Content Include="Areas\EducationalAdministration\Views\WelfarePosition\Index.js" />
<Content Include="Areas\EducationalAdministration\Views\WelfarePosition\Form.cshtml" />
<Content Include="Areas\EducationalAdministration\Views\WelfarePosition\Form.js" />
<Content Include="Areas\LR_Desktop\Views\ods_zzxxgkjcsj\Index.cshtml" />
<Content Include="Areas\LR_Desktop\Views\ods_zzxxgkjcsj\Index.js" />
<Content Include="Areas\LR_Desktop\Views\ods_zzxxgkjcsj\Form.cshtml" />
<Content Include="Areas\LR_Desktop\Views\ods_zzxxgkjcsj\Form.js" />
</ItemGroup>
<ItemGroup>
<Folder Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElectivePre\" />


+ 29
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/ODS_ZZXXGKJCSJMap.cs Wyświetl plik

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

namespace Learun.Application.Mapping
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 10:20
/// 描 述:中职学校概况基础数据表
/// </summary>
public class ODS_ZZXXGKJCSJMap : EntityTypeConfiguration<ODS_ZZXXGKJCSJEntity>
{
public ODS_ZZXXGKJCSJMap()
{
#region 表、主键
//表
this.ToTable("ODS_ZZXXGKJCSJ");
//主键
this.HasKey(t => t.XYGKJCSJID);
#endregion

#region 配置关系
#endregion
}
}
}


+ 1
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj Wyświetl plik

@@ -635,6 +635,7 @@
<Compile Include="EducationalAdministration\TE_MaterialOutboundMap.cs" />
<Compile Include="EducationalAdministration\ScoreCheckInfoMap.cs" />
<Compile Include="EducationalAdministration\WelfarePositionMap.cs" />
<Compile Include="LR_Desktop\ODS_ZZXXGKJCSJMap.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Learun.Application.Organization\Learun.Application.Organization.csproj">


+ 140
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/ods_zzxxgkjcsj/ODS_ZZXXGKJCSJEntity.cs Wyświetl plik

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

namespace Learun.Application.TwoDevelopment.LR_Desktop
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 10:20
/// 描 述:中职学校概况基础数据表
/// </summary>
public class ODS_ZZXXGKJCSJEntity
{
#region 实体成员
/// <summary>
/// XYGKJCSJID
/// </summary>
[Column("XYGKJCSJID")]
public string XYGKJCSJID { get; set; }
/// <summary>
/// XXLB
/// </summary>
[Column("XXLB")]
public string XXLB { get; set; }
/// <summary>
/// PROVINCEJGBM
/// </summary>
[Column("PROVINCEJGBM")]
public string PROVINCEJGBM { get; set; }
/// <summary>
/// PROVINCEJGMC
/// </summary>
[Column("PROVINCEJGMC")]
public string PROVINCEJGMC { get; set; }
/// <summary>
/// CITYJGBM
/// </summary>
[Column("CITYJGBM")]
public string CITYJGBM { get; set; }
/// <summary>
/// CITYJGMC
/// </summary>
[Column("CITYJGMC")]
public string CITYJGMC { get; set; }
/// <summary>
/// COUNTYJGBM
/// </summary>
[Column("COUNTYJGBM")]
public string COUNTYJGBM { get; set; }
/// <summary>
/// COUNTYJGMC
/// </summary>
[Column("COUNTYJGMC")]
public string COUNTYJGMC { get; set; }
/// <summary>
/// XXJGDM
/// </summary>
[Column("XXJGDM")]
public string XXJGDM { get; set; }
/// <summary>
/// XXJGMC
/// </summary>
[Column("XXJGMC")]
public string XXJGMC { get; set; }
/// <summary>
/// XXSSZGJYXZBM
/// </summary>
[Column("XXSSZGJYXZBM")]
public string XXSSZGJYXZBM { get; set; }
/// <summary>
/// XXJBZMC
/// </summary>
[Column("XXJBZMC")]
public string XXJBZMC { get; set; }
/// <summary>
/// XXJBZXZ
/// </summary>
[Column("XXJBZXZ")]
public string XXJBZXZ { get; set; }
/// <summary>
/// XXFZRXM
/// </summary>
[Column("XXFZRXM")]
public string XXFZRXM { get; set; }
/// <summary>
/// JXRQ
/// </summary>
[Column("JXRQ")]
public string JXRQ { get; set; }
/// <summary>
/// XYJSS
/// </summary>
[Column("XYJSS")]
public int? XYJSS { get; set; }
/// <summary>
/// XYXSS
/// </summary>
[Column("XYXSS")]
public int? XYXSS { get; set; }
/// <summary>
/// BXKSZYS
/// </summary>
[Column("BXKSZYS")]
public int? BXKSZYS { get; set; }
/// <summary>
/// SYXX
/// </summary>
[Column("SYXX")]
public string SYXX { get; set; }
/// <summary>
/// SJCJSJ
/// </summary>
[Column("SJCJSJ")]
public string SJCJSJ { get; set; }
#endregion

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


+ 125
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/ods_zzxxgkjcsj/ods_zzxxgkjcsjBLL.cs Wyświetl plik

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

namespace Learun.Application.TwoDevelopment.LR_Desktop
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 10:20
/// 描 述:中职学校概况基础数据表
/// </summary>
public class ods_zzxxgkjcsjBLL : ods_zzxxgkjcsjIBLL
{
private ods_zzxxgkjcsjService ods_zzxxgkjcsjService = new ods_zzxxgkjcsjService();

#region 获取数据

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

/// <summary>
/// 获取ODS_ZZXXGKJCSJ表实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
public ODS_ZZXXGKJCSJEntity GetODS_ZZXXGKJCSJEntity(string keyValue)
{
try
{
return ods_zzxxgkjcsjService.GetODS_ZZXXGKJCSJEntity(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_zzxxgkjcsjService.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_ZZXXGKJCSJEntity entity)
{
try
{
ods_zzxxgkjcsjService.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/LR_Desktop/ods_zzxxgkjcsj/ods_zzxxgkjcsjIBLL.cs Wyświetl plik

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

namespace Learun.Application.TwoDevelopment.LR_Desktop
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 10:20
/// 描 述:中职学校概况基础数据表
/// </summary>
public interface ods_zzxxgkjcsjIBLL
{
#region 获取数据

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

}
}

+ 146
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/ods_zzxxgkjcsj/ods_zzxxgkjcsjService.cs Wyświetl plik

@@ -0,0 +1,146 @@
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.LR_Desktop
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 10:20
/// 描 述:中职学校概况基础数据表
/// </summary>
public class ods_zzxxgkjcsjService : RepositoryFactory
{
#region 获取数据

/// <summary>
/// 获取页面显示列表数据
/// </summary>
/// <param name="pagination">查询参数</param>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
public IEnumerable<ODS_ZZXXGKJCSJEntity> GetPageList(Pagination pagination, string queryJson)
{
try
{
var strSql = new StringBuilder();
strSql.Append("SELECT ");
strSql.Append(@"
t.XYGKJCSJID,
t.PROVINCEJGBM,
t.XXLB
");
strSql.Append(" FROM ODS_ZZXXGKJCSJ t ");
strSql.Append(" WHERE 1=1 ");
var queryParam = queryJson.ToJObject();
// 虚拟参数
var dp = new DynamicParameters(new { });
return this.BaseRepository("changyang").FindList<ODS_ZZXXGKJCSJEntity>(strSql.ToString(),dp, pagination);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowServiceException(ex);
}
}
}

/// <summary>
/// 获取ODS_ZZXXGKJCSJ表实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
public ODS_ZZXXGKJCSJEntity GetODS_ZZXXGKJCSJEntity(string keyValue)
{
try
{
return this.BaseRepository("changyang").FindEntity<ODS_ZZXXGKJCSJEntity>(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_ZZXXGKJCSJEntity>(t=>t.XYGKJCSJID == 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_ZZXXGKJCSJEntity 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 Wyświetl plik

@@ -1963,6 +1963,10 @@
<Compile Include="EducationalAdministration\WelfarePosition\WelfarePositionService.cs" />
<Compile Include="EducationalAdministration\WelfarePosition\WelfarePositionIBLL.cs" />
<Compile Include="EducationalAdministration\WelfarePosition\WelfarePositionBLL.cs" />
<Compile Include="LR_Desktop\ods_zzxxgkjcsj\ODS_ZZXXGKJCSJEntity.cs" />
<Compile Include="LR_Desktop\ods_zzxxgkjcsj\ods_zzxxgkjcsjService.cs" />
<Compile Include="LR_Desktop\ods_zzxxgkjcsj\ods_zzxxgkjcsjBLL.cs" />
<Compile Include="LR_Desktop\ods_zzxxgkjcsj\ods_zzxxgkjcsjIBLL.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Learun.Application.Organization\Learun.Application.Organization.csproj">


Ładowanie…
Anuluj
Zapisz