Ver código fonte

党建活动三会一课数据表

长阳分支推送专用
zhaochangjiang 2 anos atrás
pai
commit
63883359da
13 arquivos alterados com 877 adições e 0 exclusões
  1. +117
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Controllers/ods_xnsxjdsjController.cs
  2. +75
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.cshtml
  3. +50
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.js
  4. +29
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.cshtml
  5. +103
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/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_XNSXJDSJMap.cs
  8. +1
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
  9. +130
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ODS_XNSXJDSJEntity.cs
  10. +125
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjBLL.cs
  11. +48
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjIBLL.cs
  12. +161
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjService.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_xnsxjdsjController.cs Ver arquivo

@@ -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:37
/// 描 述:校内实训基地数据表
/// </summary>
public class ods_xnsxjdsjController : MvcControllerBase
{
private ods_xnsxjdsjIBLL ods_xnsxjdsjIBLL = new ods_xnsxjdsjBLL();

#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_xnsxjdsjIBLL.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_XNSXJDSJData = ods_xnsxjdsjIBLL.GetODS_XNSXJDSJEntity( keyValue );
var jsonData = new {
ODS_XNSXJDSJ = ODS_XNSXJDSJData,
};
return Success(jsonData);
}
#endregion

#region 提交数据

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

}
}

+ 75
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.cshtml Ver arquivo

@@ -0,0 +1,75 @@
@{
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_XNSXJDSJ" >
<div class="lr-form-item-title">学校机构代码</div>
<input id="XXJGDM" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">学校机构名称</div>
<input id="XXJGMC" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">实训基地号</div>
<input id="SXJDH" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">实训基地名称</div>
<input id="SXJDMC" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">成立年度</div>
<input id="CLND" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">面向专业</div>
<input id="MXZY" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">被列为实训基地项目支持部门</div>
<input id="ZCBM" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">批准日期</div>
<input id="PZRQ" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">实训室数</div>
<input id="SXSS" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">实训项目总数</div>
<input id="SXXMZS" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">基地类别</div>
<input id="JDLB" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">建筑面积</div>
<input id="JZMJ" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">仪器设备总数</div>
<input id="YQSBZS" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">实践教学工位数</div>
<input id="SJJXGWS" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">管理人员(专职)</div>
<input id="GLRYZZ" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">管理人员(兼职)</div>
<input id="GLRYJZ" type="text" class="form-control" />
</div>
<div class="col-xs-12 lr-form-item" data-table="ODS_XNSXJDSJ" >
<div class="lr-form-item-title">数据采集时间</div>
<input id="SJCJSJ" type="text" class="form-control" />
</div>
</div>
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.js")

+ 50
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Form.js Ver arquivo

@@ -0,0 +1,50 @@
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
* 创建人:超级管理员
* 日 期:2022-11-09 15:37
* 描 述:校内实训基地数据表
*/
var acceptClick;
var keyValue = request('keyValue');
var bootstrap = function ($, learun) {
"use strict";
var page = {
init: function () {
$('.lr-form-wrap').lrscroll();
page.bind();
page.initData();
},
bind: function () {
},
initData: function () {
if (!!keyValue) {
$.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_xnsxjdsj/GetFormData?keyValue=' + keyValue, function (data) {
for (var id in data) {
if (!!data[id].length && data[id].length > 0) {
$('#' + id ).jfGridSet('refreshdata', data[id]);
}
else {
$('[data-table="' + id + '"]').lrSetFormData(data[id]);
}
}
});
}
}
};
// 保存数据
acceptClick = function (callBack) {
if (!$('body').lrValidform()) {
return false;
}
var postData = {
strEntity: JSON.stringify($('body').lrGetFormData())
};
$.lrSaveForm(top.$.rootUrl + '/Changyang_zhdn/ods_xnsxjdsj/SaveForm?keyValue=' + keyValue, postData, function (res) {
// 保存成功后才回调
if (!!callBack) {
callBack();
}
});
};
page.init();
}

+ 29
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.cshtml Ver arquivo

@@ -0,0 +1,29 @@
@{
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 class=" btn-group btn-group-sm" learun-authorize="yes">
<a id="lr_import" class="btn btn-default"><i class="fa fa-plus"></i>&nbsp; 导入</a>
</div>
</div>
</div>
<div class="lr-layout-body" id="gridtable"></div>
</div>
</div>
</div>
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.js")

+ 103
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Changyang_zhdn/Views/ods_xnsxjdsj/Index.js Ver arquivo

@@ -0,0 +1,103 @@
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
* 创建人:超级管理员
* 日 期:2022-11-09 15:37
* 描 述:校内实训基地数据表
*/
var refreshGirdData;
var bootstrap = function ($, learun) {
"use strict";
var page = {
init: function () {
page.initGird();
page.bind();
},
bind: function () {
// 刷新
$('#lr_refresh').on('click', function () {
location.reload();
});
// 新增
$('#lr_add').on('click', function () {
learun.layerForm({
id: 'form',
title: '新增',
url: top.$.rootUrl + '/Changyang_zhdn/ods_xnsxjdsj/Form',
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
});
// 编辑
$('#lr_edit').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('GZZYQKSJID');
if (learun.checkrow(keyValue)) {
learun.layerForm({
id: 'form',
title: '编辑',
url: top.$.rootUrl + '/Changyang_zhdn/ods_xnsxjdsj/Form?keyValue=' + keyValue,
width: 600,
height: 400,
callBack: function (id) {
return top[id].acceptClick(refreshGirdData);
}
});
}
});
// 删除
$('#lr_delete').on('click', function () {
var keyValue = $('#gridtable').jfGridValue('GZZYQKSJID');
if (learun.checkrow(keyValue)) {
learun.layerConfirm('是否确认删除该项!', function (res) {
if (res) {
learun.deleteForm(top.$.rootUrl + '/Changyang_zhdn/ods_xnsxjdsj/DeleteForm', { keyValue: keyValue}, function () {
refreshGirdData();
});
}
});
}
});
//  导入
$('#lr_import').on('click', function () {
});
},
// 初始化列表
initGird: function () {
$('#gridtable').lrAuthorizeJfGrid({
url: top.$.rootUrl + '/Changyang_zhdn/ods_xnsxjdsj/GetPageList',
headData: [
{ label: "学校机构代码", name: "XXJGDM", width: 100, align: "left"},
{ label: "学校机构名称", name: "XXJGMC", width: 100, align: "left"},
{ label: "实训基地号", name: "SXJDH", width: 100, align: "left"},
{ label: "实训基地名称", name: "SXJDMC", width: 100, align: "left"},
{ label: "成立年度", name: "CLND", width: 100, align: "left"},
{ label: "面向专业", name: "MXZY", width: 100, align: "left"},
{ label: "被列为实训基地项目支持部门", name: "ZCBM", width: 100, align: "left"},
{ label: "批准日期", name: "PZRQ", width: 100, align: "left"},
{ label: "实训室数", name: "SXSS", width: 100, align: "left"},
{ label: "实训项目总数", name: "SXXMZS", width: 100, align: "left"},
{ label: "基地类别", name: "JDLB", width: 100, align: "left"},
{ label: "建筑面积", name: "JZMJ", width: 100, align: "left"},
{ label: "仪器设备总数", name: "YQSBZS", width: 100, align: "left"},
{ label: "实践教学工位数", name: "SJJXGWS", width: 100, align: "left"},
{ label: "管理人员(专职)", name: "GLRYZZ", width: 100, align: "left"},
{ label: "管理人员(兼职)", name: "GLRYJZ", width: 100, align: "left"},
{ label: "数据采集时间", name: "SJCJSJ", width: 100, align: "left"},
],
mainId:'GZZYQKSJID',
isPage: true
});
page.search();
},
search: function (param) {
param = param || {};
$('#gridtable').jfGridSet('reload',{ queryJson: JSON.stringify(param) });
}
};
refreshGirdData = function () {
$('#gridtable').jfGridSet('reload');
};
page.init();
}

+ 5
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj Ver arquivo

@@ -881,6 +881,7 @@
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_zzxxgkjcsjController.cs" />
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_wfjckcjsjController.cs" />
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_xszhcjpjsjController.cs" />
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_xnsxjdsjController.cs" />
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_djhddygbxxsjController.cs" />
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_djhdshyksjController.cs" />
</ItemGroup>
@@ -6966,6 +6967,10 @@
<Content Include="Areas\Changyang_zhdn\Views\ods_xszhcjpjsj\Index.js" />
<Content Include="Areas\Changyang_zhdn\Views\ods_xszhcjpjsj\Form.cshtml" />
<Content Include="Areas\Changyang_zhdn\Views\ods_xszhcjpjsj\Form.js" />
<Content Include="Areas\Changyang_zhdn\Views\ods_xnsxjdsj\Index.cshtml" />
<Content Include="Areas\Changyang_zhdn\Views\ods_xnsxjdsj\Index.js" />
<Content Include="Areas\Changyang_zhdn\Views\ods_xnsxjdsj\Form.cshtml" />
<Content Include="Areas\Changyang_zhdn\Views\ods_xnsxjdsj\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" />


+ 29
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Changyang_zhdn/ODS_XNSXJDSJMap.cs Ver arquivo

@@ -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:37
/// 描 述:校内实训基地数据表
/// </summary>
public class ODS_XNSXJDSJMap : EntityTypeConfiguration<ODS_XNSXJDSJEntity>
{
public ODS_XNSXJDSJMap()
{
#region 表、主键
//表
this.ToTable("ODS_XNSXJDSJ");
//主键
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 Ver arquivo

@@ -640,6 +640,7 @@
<Compile Include="Changyang_zhdn\ODS_ZZXXGKJCSJMap.cs" />
<Compile Include="Changyang_zhdn\ODS_WFJCKCJSJMap.cs" />
<Compile Include="Changyang_zhdn\ODS_XSZHCJPJSJMap.cs" />
<Compile Include="Changyang_zhdn\ODS_XNSXJDSJMap.cs" />
<Compile Include="Changyang_zhdn\ODS_DJHDDYGBXXSJMap.cs" />
<Compile Include="Changyang_zhdn\ODS_DJHDSHYKSJMap.cs" />
</ItemGroup>


+ 130
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ODS_XNSXJDSJEntity.cs Ver arquivo

@@ -0,0 +1,130 @@
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:37
/// 描 述:校内实训基地数据表
/// </summary>
public class ODS_XNSXJDSJEntity
{
#region 实体成员
/// <summary>
/// GZZYQKSJID
/// </summary>
[Column("GZZYQKSJID")]
public string GZZYQKSJID { get; set; }
/// <summary>
/// 学校机构代码
/// </summary>
[Column("XXJGDM")]
public string XXJGDM { get; set; }
/// <summary>
/// 学校机构名称
/// </summary>
[Column("XXJGMC")]
public string XXJGMC { get; set; }
/// <summary>
/// 实训基地号
/// </summary>
[Column("SXJDH")]
public string SXJDH { get; set; }
/// <summary>
/// 实训基地名称
/// </summary>
[Column("SXJDMC")]
public string SXJDMC { get; set; }
/// <summary>
/// 成立年度
/// </summary>
[Column("CLND")]
public string CLND { get; set; }
/// <summary>
/// 面向专业
/// </summary>
[Column("MXZY")]
public string MXZY { get; set; }
/// <summary>
/// 被列为实训基地项目支持部门
/// </summary>
[Column("ZCBM")]
public string ZCBM { get; set; }
/// <summary>
/// 批准日期
/// </summary>
[Column("PZRQ")]
public string PZRQ { get; set; }
/// <summary>
/// 实训室数
/// </summary>
[Column("SXSS")]
public int? SXSS { get; set; }
/// <summary>
/// 实训项目总数
/// </summary>
[Column("SXXMZS")]
public int? SXXMZS { get; set; }
/// <summary>
/// 基地类别
/// </summary>
[Column("JDLB")]
public string JDLB { get; set; }
/// <summary>
/// 建筑面积
/// </summary>
[Column("JZMJ")]
public int? JZMJ { get; set; }
/// <summary>
/// 仪器设备总数
/// </summary>
[Column("YQSBZS")]
public int? YQSBZS { get; set; }
/// <summary>
/// 实践教学工位数
/// </summary>
[Column("SJJXGWS")]
public int? SJJXGWS { get; set; }
/// <summary>
/// 管理人员(专职)
/// </summary>
[Column("GLRYZZ")]
public string GLRYZZ { get; set; }
/// <summary>
/// 管理人员(兼职)
/// </summary>
[Column("GLRYJZ")]
public string GLRYJZ { get; set; }
/// <summary>
/// 数据采集时间
/// </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_xnsxjdsj/ods_xnsxjdsjBLL.cs Ver arquivo

@@ -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:37
/// 描 述:校内实训基地数据表
/// </summary>
public class ods_xnsxjdsjBLL : ods_xnsxjdsjIBLL
{
private ods_xnsxjdsjService ods_xnsxjdsjService = new ods_xnsxjdsjService();

#region 获取数据

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

/// <summary>
/// 获取ODS_XNSXJDSJ表实体数据
/// </summary>
/// <param name="keyValue">主键</param>
/// <returns></returns>
public ODS_XNSXJDSJEntity GetODS_XNSXJDSJEntity(string keyValue)
{
try
{
return ods_xnsxjdsjService.GetODS_XNSXJDSJEntity(keyValue);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowBusinessException(ex);
}
}
}

#endregion

#region 提交数据

/// <summary>
/// 删除实体数据
/// </summary>
/// <param name="keyValue">主键</param>
public void DeleteEntity(string keyValue)
{
try
{
ods_xnsxjdsjService.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_XNSXJDSJEntity entity)
{
try
{
ods_xnsxjdsjService.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_xnsxjdsj/ods_xnsxjdsjIBLL.cs Ver arquivo

@@ -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:37
/// 描 述:校内实训基地数据表
/// </summary>
public interface ods_xnsxjdsjIBLL
{
#region 获取数据

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

}
}

+ 161
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Changyang_zhdn/ods_xnsxjdsj/ods_xnsxjdsjService.cs Ver arquivo

@@ -0,0 +1,161 @@
using Dapper;
using Learun.DataBase.Repository;
using Learun.Util;
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;

namespace Learun.Application.TwoDevelopment.Changyang_zhdn
{
/// <summary>
/// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
/// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
/// 创 建:超级管理员
/// 日 期:2022-11-09 15:37
/// 描 述:校内实训基地数据表
/// </summary>
public class ods_xnsxjdsjService : RepositoryFactory
{
#region 获取数据

/// <summary>
/// 获取页面显示列表数据
/// </summary>
/// <param name="pagination">查询参数</param>
/// <param name="queryJson">查询参数</param>
/// <returns></returns>
public IEnumerable<ODS_XNSXJDSJEntity> GetPageList(Pagination pagination, string queryJson)
{
try
{
var strSql = new StringBuilder();
strSql.Append("SELECT ");
strSql.Append(@"
t.GZZYQKSJID,
t.XXJGDM,
t.XXJGMC,
t.SXJDH,
t.SXJDMC,
t.CLND,
t.MXZY,
t.ZCBM,
t.PZRQ,
t.SXSS,
t.SXXMZS,
t.JDLB,
t.JZMJ,
t.YQSBZS,
t.SJJXGWS,
t.GLRYZZ,
t.GLRYJZ,
t.SJCJSJ
");
strSql.Append(" FROM ODS_XNSXJDSJ t ");
strSql.Append(" WHERE 1=1 ");
var queryParam = queryJson.ToJObject();
// 虚拟参数
var dp = new DynamicParameters(new { });
return this.BaseRepository("changyang").FindList<ODS_XNSXJDSJEntity>(strSql.ToString(),dp, pagination);
}
catch (Exception ex)
{
if (ex is ExceptionEx)
{
throw;
}
else
{
throw ExceptionEx.ThrowServiceException(ex);
}
}
}

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

#endregion

}
}

+ 4
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Learun.Application.TwoDevelopment.csproj Ver arquivo

@@ -1983,6 +1983,10 @@
<Compile Include="Changyang_zhdn\ods_xszhcjpjsj\ods_xszhcjpjsjService.cs" />
<Compile Include="Changyang_zhdn\ods_xszhcjpjsj\ods_xszhcjpjsjBLL.cs" />
<Compile Include="Changyang_zhdn\ods_xszhcjpjsj\ods_xszhcjpjsjIBLL.cs" />
<Compile Include="Changyang_zhdn\ods_xnsxjdsj\ODS_XNSXJDSJEntity.cs" />
<Compile Include="Changyang_zhdn\ods_xnsxjdsj\ods_xnsxjdsjService.cs" />
<Compile Include="Changyang_zhdn\ods_xnsxjdsj\ods_xnsxjdsjBLL.cs" />
<Compile Include="Changyang_zhdn\ods_xnsxjdsj\ods_xnsxjdsjIBLL.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" />


Carregando…
Cancelar
Salvar