@@ -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 14:59 | |||||
/// 描 述:文化基础课成绩数据表 | |||||
/// </summary> | |||||
public class ods_wfjckcjsjController : MvcControllerBase | |||||
{ | |||||
private ods_wfjckcjsjIBLL ods_wfjckcjsjIBLL = new ods_wfjckcjsjBLL(); | |||||
#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_wfjckcjsjIBLL.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_WFJCKCJSJData = ods_wfjckcjsjIBLL.GetODS_WFJCKCJSJEntity( keyValue ); | |||||
var jsonData = new { | |||||
ODS_WFJCKCJSJ = ODS_WFJCKCJSJData, | |||||
}; | |||||
return Success(jsonData); | |||||
} | |||||
#endregion | |||||
#region 提交数据 | |||||
/// <summary> | |||||
/// 删除实体数据 | |||||
/// </summary> | |||||
/// <param name="keyValue">主键</param> | |||||
/// <returns></returns> | |||||
[HttpPost] | |||||
[AjaxOnly] | |||||
public ActionResult DeleteForm(string keyValue) | |||||
{ | |||||
ods_wfjckcjsjIBLL.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_WFJCKCJSJEntity entity = strEntity.ToObject<ODS_WFJCKCJSJEntity>(); | |||||
ods_wfjckcjsjIBLL.SaveEntity(keyValue,entity); | |||||
if (string.IsNullOrEmpty(keyValue)) | |||||
{ | |||||
} | |||||
return Success("保存成功!"); | |||||
} | |||||
#endregion | |||||
} | |||||
} |
@@ -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:18 | |||||
/// 描 述:学生综合成绩与评价数据表 | |||||
/// </summary> | |||||
public class ods_xszhcjpjsjController : MvcControllerBase | |||||
{ | |||||
private ods_xszhcjpjsjIBLL ods_xszhcjpjsjIBLL = new ods_xszhcjpjsjBLL(); | |||||
#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_xszhcjpjsjIBLL.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_XSZHCJPJSJData = ods_xszhcjpjsjIBLL.GetODS_XSZHCJPJSJEntity( keyValue ); | |||||
var jsonData = new { | |||||
ODS_XSZHCJPJSJ = ODS_XSZHCJPJSJData, | |||||
}; | |||||
return Success(jsonData); | |||||
} | |||||
#endregion | |||||
#region 提交数据 | |||||
/// <summary> | |||||
/// 删除实体数据 | |||||
/// </summary> | |||||
/// <param name="keyValue">主键</param> | |||||
/// <returns></returns> | |||||
[HttpPost] | |||||
[AjaxOnly] | |||||
public ActionResult DeleteForm(string keyValue) | |||||
{ | |||||
ods_xszhcjpjsjIBLL.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_XSZHCJPJSJEntity entity = strEntity.ToObject<ODS_XSZHCJPJSJEntity>(); | |||||
ods_xszhcjpjsjIBLL.SaveEntity(keyValue,entity); | |||||
if (string.IsNullOrEmpty(keyValue)) | |||||
{ | |||||
} | |||||
return Success("保存成功!"); | |||||
} | |||||
#endregion | |||||
} | |||||
} |
@@ -0,0 +1,55 @@ | |||||
@{ | |||||
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_WFJCKCJSJ" > | |||||
<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_WFJCKCJSJ" > | |||||
<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_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">学年</div> | |||||
<input id="XN" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">学期</div> | |||||
<input id="XQ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">年级</div> | |||||
<input id="NJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">班级</div> | |||||
<input id="BJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">专业名称</div> | |||||
<input id="ZYMC" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">课程名称</div> | |||||
<input id="KCMC" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">课程分类</div> | |||||
<div id="KCFL" ></div> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">任课教师</div> | |||||
<input id="RKJS" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">课程成绩</div> | |||||
<input id="KCCJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_WFJCKCJSJ" > | |||||
<div class="lr-form-item-title">数据采集时间</div> | |||||
<input id="SJCJSJ" type="text" class="form-control" /> | |||||
</div> | |||||
</div> | |||||
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_wfjckcjsj/Form.js") |
@@ -0,0 +1,51 @@ | |||||
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) | |||||
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||||
* 创建人:超级管理员 | |||||
* 日 期:2022-11-09 14:59 | |||||
* 描 述:文化基础课成绩数据表 | |||||
*/ | |||||
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 () { | |||||
$('#KCFL').lrDataSourceSelect({ code: 'CdLessonType',value: 'lessontypecode',text: 'lessontypename' }); | |||||
}, | |||||
initData: function () { | |||||
if (!!keyValue) { | |||||
$.lrSetForm(top.$.rootUrl + '/Changyang_zhdn/ods_wfjckcjsj/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_wfjckcjsj/SaveForm?keyValue=' + keyValue, postData, function (res) { | |||||
// 保存成功后才回调 | |||||
if (!!callBack) { | |||||
callBack(); | |||||
} | |||||
}); | |||||
}; | |||||
page.init(); | |||||
} |
@@ -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> 新增</a> | |||||
<a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i> 编辑</a> | |||||
<a id="lr_delete" class="btn btn-default"><i class="fa fa-trash-o"></i> 删除</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="lr-layout-body" id="gridtable"></div> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_wfjckcjsj/Index.js") |
@@ -0,0 +1,105 @@ | |||||
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) | |||||
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||||
* 创建人:超级管理员 | |||||
* 日 期:2022-11-09 14:59 | |||||
* 描 述:文化基础课成绩数据表 | |||||
*/ | |||||
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_wfjckcjsj/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_wfjckcjsj/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_wfjckcjsj/DeleteForm', { keyValue: keyValue}, function () { | |||||
refreshGirdData(); | |||||
}); | |||||
} | |||||
}); | |||||
} | |||||
}); | |||||
}, | |||||
// 初始化列表 | |||||
initGird: function () { | |||||
$('#gridtable').lrAuthorizeJfGrid({ | |||||
url: top.$.rootUrl + '/Changyang_zhdn/ods_wfjckcjsj/GetPageList', | |||||
headData: [ | |||||
{ label: "学校机构代码", name: "XXJGDM", width: 100, align: "left"}, | |||||
{ label: "学校机构名称", name: "XXJGMC", width: 100, align: "left"}, | |||||
{ label: "学年", name: "XN", width: 100, align: "left"}, | |||||
{ label: "学期", name: "XQ", width: 100, align: "left"}, | |||||
{ label: "年级", name: "NJ", width: 100, align: "left"}, | |||||
{ label: "班级", name: "BJ", width: 100, align: "left"}, | |||||
{ label: "专业名称", name: "ZYMC", width: 100, align: "left"}, | |||||
{ label: "课程名称", name: "KCMC", width: 100, align: "left"}, | |||||
{ label: "课程分类", name: "KCFL", width: 100, align: "left", | |||||
formatterAsync: function (callback, value, row, op,$cell) { | |||||
learun.clientdata.getAsync('custmerData', { | |||||
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CdLessonType', | |||||
key: value, | |||||
keyId: 'lessontypecode', | |||||
callback: function (_data) { | |||||
callback(_data['lessontypename']); | |||||
} | |||||
}); | |||||
}}, | |||||
{ label: "任课教师", name: "RKJS", width: 100, align: "left"}, | |||||
{ label: "课程成绩", name: "KCCJ", 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(); | |||||
} |
@@ -0,0 +1,67 @@ | |||||
@{ | |||||
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_XSZHCJPJSJ" > | |||||
<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_XSZHCJPJSJ" > | |||||
<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_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">学年</div> | |||||
<input id="XN" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">学期</div> | |||||
<input id="XQ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">专业名称</div> | |||||
<input id="ZYMC" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">年级</div> | |||||
<input id="NJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">班级</div> | |||||
<input id="BJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">学籍号</div> | |||||
<input id="XJH" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">学生姓名</div> | |||||
<input id="XSXM" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">思想政治成绩</div> | |||||
<input id="SXZZCJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">文化课成绩</div> | |||||
<input id="WHKCJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">专业技能课程成绩</div> | |||||
<input id="ZYJNKCCJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">学生体质健康成绩</div> | |||||
<input id="XSTZJKCJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">综合评价成绩</div> | |||||
<input id="ZHPJ" type="text" class="form-control" /> | |||||
</div> | |||||
<div class="col-xs-12 lr-form-item" data-table="ODS_XSZHCJPJSJ" > | |||||
<div class="lr-form-item-title">数据采集时间</div> | |||||
<input id="SJCJSJ" type="text" class="form-control" /> | |||||
</div> | |||||
</div> | |||||
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_xszhcjpjsj/Form.js") |
@@ -0,0 +1,50 @@ | |||||
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) | |||||
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||||
* 创建人:超级管理员 | |||||
* 日 期:2022-11-09 15:18 | |||||
* 描 述:学生综合成绩与评价数据表 | |||||
*/ | |||||
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_xszhcjpjsj/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_xszhcjpjsj/SaveForm?keyValue=' + keyValue, postData, function (res) { | |||||
// 保存成功后才回调 | |||||
if (!!callBack) { | |||||
callBack(); | |||||
} | |||||
}); | |||||
}; | |||||
page.init(); | |||||
} |
@@ -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> 新增</a> | |||||
<a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i> 编辑</a> | |||||
<a id="lr_delete" class="btn btn-default"><i class="fa fa-trash-o"></i> 删除</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="lr-layout-body" id="gridtable"></div> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
@Html.AppendJsFile("/Areas/Changyang_zhdn/Views/ods_xszhcjpjsj/Index.js") |
@@ -0,0 +1,98 @@ | |||||
/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn) | |||||
* Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 | |||||
* 创建人:超级管理员 | |||||
* 日 期:2022-11-09 15:18 | |||||
* 描 述:学生综合成绩与评价数据表 | |||||
*/ | |||||
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_xszhcjpjsj/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_xszhcjpjsj/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_xszhcjpjsj/DeleteForm', { keyValue: keyValue}, function () { | |||||
refreshGirdData(); | |||||
}); | |||||
} | |||||
}); | |||||
} | |||||
}); | |||||
}, | |||||
// 初始化列表 | |||||
initGird: function () { | |||||
$('#gridtable').lrAuthorizeJfGrid({ | |||||
url: top.$.rootUrl + '/Changyang_zhdn/ods_xszhcjpjsj/GetPageList', | |||||
headData: [ | |||||
{ label: "学校机构代码", name: "XXJGDM", width: 100, align: "left"}, | |||||
{ label: "学校机构名称", name: "XXJGMC", width: 100, align: "left"}, | |||||
{ label: "学年", name: "XN", width: 100, align: "left"}, | |||||
{ label: "学期", name: "XQ", width: 100, align: "left"}, | |||||
{ label: "专业名称", name: "ZYMC", width: 100, align: "left"}, | |||||
{ label: "年级", name: "NJ", width: 100, align: "left"}, | |||||
{ label: "班级", name: "BJ", width: 100, align: "left"}, | |||||
{ label: "学籍号", name: "XJH", width: 100, align: "left"}, | |||||
{ label: "学生姓名", name: "XSXM", width: 100, align: "left"}, | |||||
{ label: "思想政治成绩", name: "SXZZCJ", width: 100, align: "left"}, | |||||
{ label: "文化课成绩", name: "WHKCJ", width: 100, align: "left"}, | |||||
{ label: "专业技能课程成绩", name: "ZYJNKCCJ", width: 100, align: "left"}, | |||||
{ label: "学生体质健康成绩", name: "XSTZJKCJ", width: 100, align: "left"}, | |||||
{ label: "综合评价成绩", name: "ZHPJ", 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(); | |||||
} |
@@ -879,6 +879,8 @@ | |||||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_dyfzqkjcsjController.cs" /> | <Compile Include="Areas\Changyang_zhdn\Controllers\ods_dyfzqkjcsjController.cs" /> | ||||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_gzpjsjController.cs" /> | <Compile Include="Areas\Changyang_zhdn\Controllers\ods_gzpjsjController.cs" /> | ||||
<Compile Include="Areas\Changyang_zhdn\Controllers\ods_zzxxgkjcsjController.cs" /> | <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_xnsxjdsjController.cs" /> | ||||
</ItemGroup> | </ItemGroup> | ||||
<ItemGroup> | <ItemGroup> | ||||
@@ -6955,6 +6957,14 @@ | |||||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzxxgkjcsj\Index.js" /> | <Content Include="Areas\Changyang_zhdn\Views\ods_zzxxgkjcsj\Index.js" /> | ||||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzxxgkjcsj\Form.cshtml" /> | <Content Include="Areas\Changyang_zhdn\Views\ods_zzxxgkjcsj\Form.cshtml" /> | ||||
<Content Include="Areas\Changyang_zhdn\Views\ods_zzxxgkjcsj\Form.js" /> | <Content Include="Areas\Changyang_zhdn\Views\ods_zzxxgkjcsj\Form.js" /> | ||||
<Content Include="Areas\Changyang_zhdn\Views\ods_wfjckcjsj\Index.cshtml" /> | |||||
<Content Include="Areas\Changyang_zhdn\Views\ods_wfjckcjsj\Index.js" /> | |||||
<Content Include="Areas\Changyang_zhdn\Views\ods_wfjckcjsj\Form.cshtml" /> | |||||
<Content Include="Areas\Changyang_zhdn\Views\ods_wfjckcjsj\Form.js" /> | |||||
<Content Include="Areas\Changyang_zhdn\Views\ods_xszhcjpjsj\Index.cshtml" /> | |||||
<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.cshtml" /> | ||||
<Content Include="Areas\Changyang_zhdn\Views\ods_xnsxjdsj\Index.js" /> | <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.cshtml" /> | ||||
@@ -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 14:59 | |||||
/// 描 述:文化基础课成绩数据表 | |||||
/// </summary> | |||||
public class ODS_WFJCKCJSJMap : EntityTypeConfiguration<ODS_WFJCKCJSJEntity> | |||||
{ | |||||
public ODS_WFJCKCJSJMap() | |||||
{ | |||||
#region 表、主键 | |||||
//表 | |||||
this.ToTable("ODS_WFJCKCJSJ"); | |||||
//主键 | |||||
this.HasKey(t => t.GZZYQKSJID); | |||||
#endregion | |||||
#region 配置关系 | |||||
#endregion | |||||
} | |||||
} | |||||
} | |||||
@@ -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:18 | |||||
/// 描 述:学生综合成绩与评价数据表 | |||||
/// </summary> | |||||
public class ODS_XSZHCJPJSJMap : EntityTypeConfiguration<ODS_XSZHCJPJSJEntity> | |||||
{ | |||||
public ODS_XSZHCJPJSJMap() | |||||
{ | |||||
#region 表、主键 | |||||
//表 | |||||
this.ToTable("ODS_XSZHCJPJSJ"); | |||||
//主键 | |||||
this.HasKey(t => t.GZZYQKSJID); | |||||
#endregion | |||||
#region 配置关系 | |||||
#endregion | |||||
} | |||||
} | |||||
} | |||||
@@ -638,6 +638,8 @@ | |||||
<Compile Include="Changyang_zhdn\ODS_DYFZQKJCSJMap.cs" /> | <Compile Include="Changyang_zhdn\ODS_DYFZQKJCSJMap.cs" /> | ||||
<Compile Include="Changyang_zhdn\ODS_GZPJSJMap.cs" /> | <Compile Include="Changyang_zhdn\ODS_GZPJSJMap.cs" /> | ||||
<Compile Include="Changyang_zhdn\ODS_ZZXXGKJCSJMap.cs" /> | <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_XNSXJDSJMap.cs" /> | ||||
</ItemGroup> | </ItemGroup> | ||||
<ItemGroup> | <ItemGroup> | ||||
@@ -0,0 +1,105 @@ | |||||
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 14:59 | |||||
/// 描 述:文化基础课成绩数据表 | |||||
/// </summary> | |||||
public class ODS_WFJCKCJSJEntity | |||||
{ | |||||
#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> | |||||
/// XN | |||||
/// </summary> | |||||
[Column("XN")] | |||||
public int? XN { get; set; } | |||||
/// <summary> | |||||
/// XQ | |||||
/// </summary> | |||||
[Column("XQ")] | |||||
public int? XQ { get; set; } | |||||
/// <summary> | |||||
/// NJ | |||||
/// </summary> | |||||
[Column("NJ")] | |||||
public string NJ { get; set; } | |||||
/// <summary> | |||||
/// BJ | |||||
/// </summary> | |||||
[Column("BJ")] | |||||
public string BJ { get; set; } | |||||
/// <summary> | |||||
/// ZYMC | |||||
/// </summary> | |||||
[Column("ZYMC")] | |||||
public string ZYMC { get; set; } | |||||
/// <summary> | |||||
/// KCMC | |||||
/// </summary> | |||||
[Column("KCMC")] | |||||
public string KCMC { get; set; } | |||||
/// <summary> | |||||
/// KCFL | |||||
/// </summary> | |||||
[Column("KCFL")] | |||||
public string KCFL { get; set; } | |||||
/// <summary> | |||||
/// RKJS | |||||
/// </summary> | |||||
[Column("RKJS")] | |||||
public string RKJS { get; set; } | |||||
/// <summary> | |||||
/// KCCJ | |||||
/// </summary> | |||||
[Column("KCCJ")] | |||||
public string KCCJ { 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 | |||||
} | |||||
} | |||||
@@ -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 14:59 | |||||
/// 描 述:文化基础课成绩数据表 | |||||
/// </summary> | |||||
public class ods_wfjckcjsjBLL : ods_wfjckcjsjIBLL | |||||
{ | |||||
private ods_wfjckcjsjService ods_wfjckcjsjService = new ods_wfjckcjsjService(); | |||||
#region 获取数据 | |||||
/// <summary> | |||||
/// 获取页面显示列表数据 | |||||
/// </summary> | |||||
/// <param name="pagination">分页参数</param> | |||||
/// <param name="queryJson">查询参数</param> | |||||
/// <returns></returns> | |||||
public IEnumerable<ODS_WFJCKCJSJEntity> GetPageList(Pagination pagination, string queryJson) | |||||
{ | |||||
try | |||||
{ | |||||
return ods_wfjckcjsjService.GetPageList(pagination, queryJson); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
if (ex is ExceptionEx) | |||||
{ | |||||
throw; | |||||
} | |||||
else | |||||
{ | |||||
throw ExceptionEx.ThrowBusinessException(ex); | |||||
} | |||||
} | |||||
} | |||||
/// <summary> | |||||
/// 获取ODS_WFJCKCJSJ表实体数据 | |||||
/// </summary> | |||||
/// <param name="keyValue">主键</param> | |||||
/// <returns></returns> | |||||
public ODS_WFJCKCJSJEntity GetODS_WFJCKCJSJEntity(string keyValue) | |||||
{ | |||||
try | |||||
{ | |||||
return ods_wfjckcjsjService.GetODS_WFJCKCJSJEntity(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_wfjckcjsjService.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_WFJCKCJSJEntity entity) | |||||
{ | |||||
try | |||||
{ | |||||
ods_wfjckcjsjService.SaveEntity(keyValue, entity); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
if (ex is ExceptionEx) | |||||
{ | |||||
throw; | |||||
} | |||||
else | |||||
{ | |||||
throw ExceptionEx.ThrowBusinessException(ex); | |||||
} | |||||
} | |||||
} | |||||
#endregion | |||||
} | |||||
} |
@@ -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 14:59 | |||||
/// 描 述:文化基础课成绩数据表 | |||||
/// </summary> | |||||
public interface ods_wfjckcjsjIBLL | |||||
{ | |||||
#region 获取数据 | |||||
/// <summary> | |||||
/// 获取页面显示列表数据 | |||||
/// </summary> | |||||
/// <param name="queryJson">查询参数</param> | |||||
/// <returns></returns> | |||||
IEnumerable<ODS_WFJCKCJSJEntity> GetPageList(Pagination pagination, string queryJson); | |||||
/// <summary> | |||||
/// 获取ODS_WFJCKCJSJ表实体数据 | |||||
/// </summary> | |||||
/// <param name="keyValue">主键</param> | |||||
/// <returns></returns> | |||||
ODS_WFJCKCJSJEntity GetODS_WFJCKCJSJEntity(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_WFJCKCJSJEntity entity); | |||||
#endregion | |||||
} | |||||
} |
@@ -0,0 +1,156 @@ | |||||
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 14:59 | |||||
/// 描 述:文化基础课成绩数据表 | |||||
/// </summary> | |||||
public class ods_wfjckcjsjService : RepositoryFactory | |||||
{ | |||||
#region 获取数据 | |||||
/// <summary> | |||||
/// 获取页面显示列表数据 | |||||
/// </summary> | |||||
/// <param name="pagination">查询参数</param> | |||||
/// <param name="queryJson">查询参数</param> | |||||
/// <returns></returns> | |||||
public IEnumerable<ODS_WFJCKCJSJEntity> GetPageList(Pagination pagination, string queryJson) | |||||
{ | |||||
try | |||||
{ | |||||
var strSql = new StringBuilder(); | |||||
strSql.Append("SELECT "); | |||||
strSql.Append(@" | |||||
t.GZZYQKSJID, | |||||
t.XXJGDM, | |||||
t.XXJGMC, | |||||
t.XN, | |||||
t.XQ, | |||||
t.NJ, | |||||
t.BJ, | |||||
t.ZYMC, | |||||
t.KCMC, | |||||
t.KCFL, | |||||
t.RKJS, | |||||
t.KCCJ, | |||||
t.SJCJSJ | |||||
"); | |||||
strSql.Append(" FROM ODS_WFJCKCJSJ t "); | |||||
strSql.Append(" WHERE 1=1 "); | |||||
var queryParam = queryJson.ToJObject(); | |||||
// 虚拟参数 | |||||
var dp = new DynamicParameters(new { }); | |||||
return this.BaseRepository("changyang").FindList<ODS_WFJCKCJSJEntity>(strSql.ToString(),dp, pagination); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
if (ex is ExceptionEx) | |||||
{ | |||||
throw; | |||||
} | |||||
else | |||||
{ | |||||
throw ExceptionEx.ThrowServiceException(ex); | |||||
} | |||||
} | |||||
} | |||||
/// <summary> | |||||
/// 获取ODS_WFJCKCJSJ表实体数据 | |||||
/// </summary> | |||||
/// <param name="keyValue">主键</param> | |||||
/// <returns></returns> | |||||
public ODS_WFJCKCJSJEntity GetODS_WFJCKCJSJEntity(string keyValue) | |||||
{ | |||||
try | |||||
{ | |||||
return this.BaseRepository("changyang").FindEntity<ODS_WFJCKCJSJEntity>(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_WFJCKCJSJEntity>(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_WFJCKCJSJEntity 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 | |||||
} | |||||
} |
@@ -0,0 +1,120 @@ | |||||
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:18 | |||||
/// 描 述:学生综合成绩与评价数据表 | |||||
/// </summary> | |||||
public class ODS_XSZHCJPJSJEntity | |||||
{ | |||||
#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> | |||||
/// XN | |||||
/// </summary> | |||||
[Column("XN")] | |||||
public int? XN { get; set; } | |||||
/// <summary> | |||||
/// XQ | |||||
/// </summary> | |||||
[Column("XQ")] | |||||
public int? XQ { get; set; } | |||||
/// <summary> | |||||
/// ZYMC | |||||
/// </summary> | |||||
[Column("ZYMC")] | |||||
public string ZYMC { get; set; } | |||||
/// <summary> | |||||
/// NJ | |||||
/// </summary> | |||||
[Column("NJ")] | |||||
public string NJ { get; set; } | |||||
/// <summary> | |||||
/// BJ | |||||
/// </summary> | |||||
[Column("BJ")] | |||||
public string BJ { get; set; } | |||||
/// <summary> | |||||
/// XJH | |||||
/// </summary> | |||||
[Column("XJH")] | |||||
public int? XJH { get; set; } | |||||
/// <summary> | |||||
/// XSXM | |||||
/// </summary> | |||||
[Column("XSXM")] | |||||
public string XSXM { get; set; } | |||||
/// <summary> | |||||
/// SXZZCJ | |||||
/// </summary> | |||||
[Column("SXZZCJ")] | |||||
public int? SXZZCJ { get; set; } | |||||
/// <summary> | |||||
/// WHKCJ | |||||
/// </summary> | |||||
[Column("WHKCJ")] | |||||
public int? WHKCJ { get; set; } | |||||
/// <summary> | |||||
/// ZYJNKCCJ | |||||
/// </summary> | |||||
[Column("ZYJNKCCJ")] | |||||
public int? ZYJNKCCJ { get; set; } | |||||
/// <summary> | |||||
/// XSTZJKCJ | |||||
/// </summary> | |||||
[Column("XSTZJKCJ")] | |||||
public int? XSTZJKCJ { get; set; } | |||||
/// <summary> | |||||
/// ZHPJ | |||||
/// </summary> | |||||
[Column("ZHPJ")] | |||||
public int? ZHPJ { 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 | |||||
} | |||||
} | |||||
@@ -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:18 | |||||
/// 描 述:学生综合成绩与评价数据表 | |||||
/// </summary> | |||||
public class ods_xszhcjpjsjBLL : ods_xszhcjpjsjIBLL | |||||
{ | |||||
private ods_xszhcjpjsjService ods_xszhcjpjsjService = new ods_xszhcjpjsjService(); | |||||
#region 获取数据 | |||||
/// <summary> | |||||
/// 获取页面显示列表数据 | |||||
/// </summary> | |||||
/// <param name="pagination">分页参数</param> | |||||
/// <param name="queryJson">查询参数</param> | |||||
/// <returns></returns> | |||||
public IEnumerable<ODS_XSZHCJPJSJEntity> GetPageList(Pagination pagination, string queryJson) | |||||
{ | |||||
try | |||||
{ | |||||
return ods_xszhcjpjsjService.GetPageList(pagination, queryJson); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
if (ex is ExceptionEx) | |||||
{ | |||||
throw; | |||||
} | |||||
else | |||||
{ | |||||
throw ExceptionEx.ThrowBusinessException(ex); | |||||
} | |||||
} | |||||
} | |||||
/// <summary> | |||||
/// 获取ODS_XSZHCJPJSJ表实体数据 | |||||
/// </summary> | |||||
/// <param name="keyValue">主键</param> | |||||
/// <returns></returns> | |||||
public ODS_XSZHCJPJSJEntity GetODS_XSZHCJPJSJEntity(string keyValue) | |||||
{ | |||||
try | |||||
{ | |||||
return ods_xszhcjpjsjService.GetODS_XSZHCJPJSJEntity(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_xszhcjpjsjService.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_XSZHCJPJSJEntity entity) | |||||
{ | |||||
try | |||||
{ | |||||
ods_xszhcjpjsjService.SaveEntity(keyValue, entity); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
if (ex is ExceptionEx) | |||||
{ | |||||
throw; | |||||
} | |||||
else | |||||
{ | |||||
throw ExceptionEx.ThrowBusinessException(ex); | |||||
} | |||||
} | |||||
} | |||||
#endregion | |||||
} | |||||
} |
@@ -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:18 | |||||
/// 描 述:学生综合成绩与评价数据表 | |||||
/// </summary> | |||||
public interface ods_xszhcjpjsjIBLL | |||||
{ | |||||
#region 获取数据 | |||||
/// <summary> | |||||
/// 获取页面显示列表数据 | |||||
/// </summary> | |||||
/// <param name="queryJson">查询参数</param> | |||||
/// <returns></returns> | |||||
IEnumerable<ODS_XSZHCJPJSJEntity> GetPageList(Pagination pagination, string queryJson); | |||||
/// <summary> | |||||
/// 获取ODS_XSZHCJPJSJ表实体数据 | |||||
/// </summary> | |||||
/// <param name="keyValue">主键</param> | |||||
/// <returns></returns> | |||||
ODS_XSZHCJPJSJEntity GetODS_XSZHCJPJSJEntity(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_XSZHCJPJSJEntity entity); | |||||
#endregion | |||||
} | |||||
} |
@@ -0,0 +1,159 @@ | |||||
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:18 | |||||
/// 描 述:学生综合成绩与评价数据表 | |||||
/// </summary> | |||||
public class ods_xszhcjpjsjService : RepositoryFactory | |||||
{ | |||||
#region 获取数据 | |||||
/// <summary> | |||||
/// 获取页面显示列表数据 | |||||
/// </summary> | |||||
/// <param name="pagination">查询参数</param> | |||||
/// <param name="queryJson">查询参数</param> | |||||
/// <returns></returns> | |||||
public IEnumerable<ODS_XSZHCJPJSJEntity> GetPageList(Pagination pagination, string queryJson) | |||||
{ | |||||
try | |||||
{ | |||||
var strSql = new StringBuilder(); | |||||
strSql.Append("SELECT "); | |||||
strSql.Append(@" | |||||
t.GZZYQKSJID, | |||||
t.XXJGDM, | |||||
t.XXJGMC, | |||||
t.XN, | |||||
t.XQ, | |||||
t.ZYMC, | |||||
t.NJ, | |||||
t.BJ, | |||||
t.XJH, | |||||
t.XSXM, | |||||
t.SXZZCJ, | |||||
t.WHKCJ, | |||||
t.ZYJNKCCJ, | |||||
t.XSTZJKCJ, | |||||
t.ZHPJ, | |||||
t.SJCJSJ | |||||
"); | |||||
strSql.Append(" FROM ODS_XSZHCJPJSJ t "); | |||||
strSql.Append(" WHERE 1=1 "); | |||||
var queryParam = queryJson.ToJObject(); | |||||
// 虚拟参数 | |||||
var dp = new DynamicParameters(new { }); | |||||
return this.BaseRepository("changyang").FindList<ODS_XSZHCJPJSJEntity>(strSql.ToString(),dp, pagination); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
if (ex is ExceptionEx) | |||||
{ | |||||
throw; | |||||
} | |||||
else | |||||
{ | |||||
throw ExceptionEx.ThrowServiceException(ex); | |||||
} | |||||
} | |||||
} | |||||
/// <summary> | |||||
/// 获取ODS_XSZHCJPJSJ表实体数据 | |||||
/// </summary> | |||||
/// <param name="keyValue">主键</param> | |||||
/// <returns></returns> | |||||
public ODS_XSZHCJPJSJEntity GetODS_XSZHCJPJSJEntity(string keyValue) | |||||
{ | |||||
try | |||||
{ | |||||
return this.BaseRepository("changyang").FindEntity<ODS_XSZHCJPJSJEntity>(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_XSZHCJPJSJEntity>(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_XSZHCJPJSJEntity 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 | |||||
} | |||||
} |
@@ -1975,6 +1975,14 @@ | |||||
<Compile Include="Changyang_zhdn\ods_zzxxgkjcsj\ods_zzxxgkjcsjService.cs" /> | <Compile Include="Changyang_zhdn\ods_zzxxgkjcsj\ods_zzxxgkjcsjService.cs" /> | ||||
<Compile Include="Changyang_zhdn\ods_zzxxgkjcsj\ods_zzxxgkjcsjBLL.cs" /> | <Compile Include="Changyang_zhdn\ods_zzxxgkjcsj\ods_zzxxgkjcsjBLL.cs" /> | ||||
<Compile Include="Changyang_zhdn\ods_zzxxgkjcsj\ods_zzxxgkjcsjIBLL.cs" /> | <Compile Include="Changyang_zhdn\ods_zzxxgkjcsj\ods_zzxxgkjcsjIBLL.cs" /> | ||||
<Compile Include="Changyang_zhdn\ods_wfjckcjsj\ODS_WFJCKCJSJEntity.cs" /> | |||||
<Compile Include="Changyang_zhdn\ods_wfjckcjsj\ods_wfjckcjsjService.cs" /> | |||||
<Compile Include="Changyang_zhdn\ods_wfjckcjsj\ods_wfjckcjsjBLL.cs" /> | |||||
<Compile Include="Changyang_zhdn\ods_wfjckcjsj\ods_wfjckcjsjIBLL.cs" /> | |||||
<Compile Include="Changyang_zhdn\ods_xszhcjpjsj\ODS_XSZHCJPJSJEntity.cs" /> | |||||
<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_XNSXJDSJEntity.cs" /> | ||||
<Compile Include="Changyang_zhdn\ods_xnsxjdsj\ods_xnsxjdsjService.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_xnsxjdsjBLL.cs" /> | ||||