Merge remote-tracking branch 'origin/master'

master
dsh 12 months ago
commit 2ae34f0eff

@ -1,7 +1,9 @@
package com.ruoyi.web.controller.system;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.system.domain.TdQuestion;
import com.ruoyi.system.service.ITdQuestionService;
import org.apache.shiro.authz.annotation.RequiresPermissions;
@ -46,7 +48,6 @@ public class TdExamController extends BaseController{
public TableDataInfo list(TdQuestion tdQuestion)
{
startPage();
List<TdQuestion> list = tdQuestionService.selectTdQuestionList(tdQuestion);
return getDataTable(list);
}
@ -54,6 +55,7 @@ public class TdExamController extends BaseController{
/**
* 访exam
*/
@Log(title = "涉密考试", businessType = BusinessType.EXAM)
@GetMapping("/edit")
public String index(){
return prefix + "/exam";

@ -0,0 +1,136 @@
package com.ruoyi.web.controller.system;
import java.util.List;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.system.domain.TdExamnum;
import com.ruoyi.system.service.ITdExamnumService;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
import javax.servlet.http.HttpServletRequest;
/**
* Controller
*
* @author ruoyi
* @date 2024-04-10
*/
@Controller
@RequestMapping("/system/examnum")
public class TdExamnumController extends BaseController
{
private String prefix = "system/examnum";
@Autowired
private ITdExamnumService tdExamnumService;
@RequiresPermissions("system:examnum:view")
@GetMapping()
public String examnum()
{
return prefix + "/examnum";
}
/**
*
*/
@RequiresPermissions("system:examnum:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdExamnum tdExamnum)
{
startPage();
List<TdExamnum> list = tdExamnumService.selectTdExamnumList(tdExamnum);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:examnum:export")
@Log(title = "考试结果", businessType = BusinessType.EXPORT)
@PostMapping("/export")
@ResponseBody
public AjaxResult export(TdExamnum tdExamnum)
{
List<TdExamnum> list = tdExamnumService.selectTdExamnumList(tdExamnum);
ExcelUtil<TdExamnum> util = new ExcelUtil<TdExamnum>(TdExamnum.class);
return util.exportExcel(list, "考试结果数据");
}
/**
*
*/
@GetMapping("/add")
public String add()
{
return prefix + "/add";
}
/**
*
*/
@RequiresPermissions("system:examnum:add")
@Log(title = "考试结果", businessType = BusinessType.INSERT)
@PostMapping("/add")
@ResponseBody
public AjaxResult addSave(TdExamnum tdExamnum)
{
return toAjax(tdExamnumService.insertTdExamnum(tdExamnum));
}
/**
*
*/
@RequiresPermissions("system:examnum:edit")
@GetMapping("/edit/{id}")
public String edit(@PathVariable("id") Long id, ModelMap mmap)
{
TdExamnum tdExamnum = tdExamnumService.selectTdExamnumById(id);
mmap.put("tdExamnum", tdExamnum);
return prefix + "/edit";
}
/**
*
*/
@RequiresPermissions("system:examnum:edit")
@Log(title = "考试结果", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
@ResponseBody
public AjaxResult editSave(TdExamnum tdExamnum)
{
return toAjax(tdExamnumService.updateTdExamnum(tdExamnum));
}
/**
*
*/
@RequiresPermissions("system:examnum:remove")
@Log(title = "考试结果", businessType = BusinessType.DELETE)
@PostMapping( "/remove")
@ResponseBody
public AjaxResult remove(String ids)
{
return toAjax(tdExamnumService.deleteTdExamnumByIds(ids));
}
/**
*
* @param
*/
// 新增提交
}

@ -0,0 +1,163 @@
package com.ruoyi.web.controller.system;
import java.util.List;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.system.domain.TdTrain;
import com.ruoyi.system.service.ITdTrainService;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2024-04-11
*/
@Controller
@RequestMapping("/system/train")
public class TdTrainController extends BaseController
{
private String prefix = "system/train";
@Autowired
private ITdTrainService tdTrainService;
@RequiresPermissions("system:train:view")
@GetMapping()
public String train()
{
return prefix + "/train";
}
/**
*
*/
@RequiresPermissions("system:train:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdTrain tdTrain)
{
startPage();
List<TdTrain> list = tdTrainService.selectTdTrainList(tdTrain);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:train:export")
@Log(title = "涉密人员培训", businessType = BusinessType.EXPORT)
@PostMapping("/export")
@ResponseBody
public AjaxResult export(TdTrain tdTrain)
{
List<TdTrain> list = tdTrainService.selectTdTrainList(tdTrain);
ExcelUtil<TdTrain> util = new ExcelUtil<TdTrain>(TdTrain.class);
return util.exportExcel(list, "涉密人员培训数据");
}
/**
*
*/
@GetMapping("/add")
public String add()
{
return prefix + "/add";
}
/**
*
*/
@RequiresPermissions("system:train:add")
@Log(title = "涉密人员培训", businessType = BusinessType.INSERT)
@PostMapping("/add")
@ResponseBody
public AjaxResult addSave(TdTrain tdTrain)
{
return toAjax(tdTrainService.insertTdTrain(tdTrain));
}
/**
*
*/
@RequiresPermissions("system:train:edit")
@GetMapping("/edit/{ID}")
public String edit(@PathVariable("ID") Long ID, ModelMap mmap)
{
TdTrain tdTrain = tdTrainService.selectTdTrainByID(ID);
mmap.put("tdTrain", tdTrain);
return prefix + "/edit";
}
/**
*
*/
@RequiresPermissions("system:train:edit")
@Log(title = "涉密人员培训", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
@ResponseBody
public AjaxResult editSave(TdTrain tdTrain)
{
return toAjax(tdTrainService.updateTdTrain(tdTrain));
}
/**
*
*/
@RequiresPermissions("system:train:remove")
@Log(title = "涉密人员培训", businessType = BusinessType.DELETE)
@PostMapping( "/remove")
@ResponseBody
public AjaxResult remove(String ids)
{
return toAjax(tdTrainService.deleteTdTrainByIDs(ids));
}
/**
*
*/
@RequiresPermissions("monitor:train:detail")
@GetMapping("/detail/{operId}")
public String detail(@PathVariable("id") Long operId, ModelMap mmap)
{
mmap.put("train", tdTrainService.selectTdTrainByID(operId));
return prefix + "/detail";
}
/**
*
*/
@RequiresPermissions("system:train:examine")
@GetMapping("/examine/{ID}")
public String examine(@PathVariable("ID") Long ID, ModelMap mmap)
{
TdTrain tdTrain = tdTrainService.selectTdTrainByID(ID);
mmap.put("tdTrain", tdTrain);
return prefix + "/examine";
}
/**
*
*/
@RequiresPermissions("system:train:examine")
@Log(title = "涉密人员培训", businessType = BusinessType.EXAMINE)
@PostMapping("/examine")
@ResponseBody
public AjaxResult examineSave(TdTrain tdTrain)
{
return toAjax(tdTrainService.updateTdTrain(tdTrain));
}
}

@ -0,0 +1,112 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('考试结果列表')" />
</head>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
<ul>
<li>
<label>考试姓名:</label>
<input type="text" name="userName"/>
</li>
<li>
<label>单位名称:</label>
<input type="text" name="dept"/>
</li>
<li>
<label>试题类型:</label>
<select name="tyep" th:with="type=${@dict.getType('td_question_type')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
</li>
</ul>
</div>
</form>
</div>
<div class="btn-group-sm" id="toolbar" role="group">
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:examnum:export">
<i class="fa fa-download"></i> 导出
</a>
</div>
<div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table"></table>
</div>
</div>
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('system:examnum:edit')}]];
var removeFlag = [[${@permission.hasPermi('system:examnum:remove')}]];
var tyepDatas = [[${@dict.getType('td_question_type')}]];
var prefix = ctx + "system/examnum";
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "考试结果",
columns: [{
checkbox: true
},
{
field: 'id',
title: 'id',
visible: false
},
{
field: 'userName',
title: '考试姓名'
},
{
field: 'examResult',
title: '考试分数'
},
{
field: 'startTime',
title: '开始时间'
},
{
field: 'endTime',
title: '结束时间'
},
{
field: 'dept',
title: '单位名称'
},
{
field: 'tyep',
title: '试题类型',
formatter: function(value, row, index) {
return $.table.selectDictLabel(tyepDatas, value);
}
},
{
// title: '操作',
// align: 'center',
// formatter: function(value, row, index) {
// var actions = [];
// actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
// actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a>');
// return actions.join('');
// }
}]
};
$.table.init(options);
});
</script>
</body>
</html>

@ -0,0 +1,144 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
<th:block th:include="include :: header('新增涉密人员培训')" />
<th:block th:include="include :: datetimepicker-css" />
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-train-add">
<div class="form-group">
<label class="col-sm-3 control-label is-required">所属地市:</label>
<div class="col-sm-8">
<input name="AREAID" class="form-control" type="text" required>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">所属区县:</label>
<div class="col-sm-8">
<input name="FRAMEWORK" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">人员名称:</label>
<div class="col-sm-8">
<input name="USERNAME" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">单位名称:</label>
<div class="col-sm-8">
<input name="deptName" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训类型:</label>
<div class="col-sm-8">
<select name="trainType" class="form-control m-b" th:with="type=${@dict.getType('sys_usertrain_typer')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训对象:</label>
<div class="col-sm-8">
<select name="trainSubject" class="form-control m-b" th:with="type=${@dict.getType('sys_usertrain_obj')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训地点:</label>
<div class="col-sm-8">
<textarea name="trainAddress" class="form-control"></textarea>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训开始日期:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="trainDate" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训结束时间:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="trainTimeend" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">填报人:</label>
<div class="col-sm-8">
<input name="createStaffid" class="form-control" type="text" >
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">填报日期:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="createDate" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训人员:</label>
<div class="col-sm-8">
<input name="trainName" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">部门:</label>
<div class="col-sm-8">
<input name="PART" class="form-control" type="text">
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/train"
$("#form-train-add").validate({
focusCleanup: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/add", $('#form-train-add').serialize());
}
}
$("input[name='trainDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='createDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='updateDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='trainTimeend']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
</script>
</body>
</html>

@ -0,0 +1,122 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
<th:block th:include="include :: header('修改涉密人员培训')" />
<th:block th:include="include :: datetimepicker-css" />
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-train-edit" th:object="${tdTrain}">
<input name="ID" th:field="*{ID}" type="hidden">
<div class="form-group">
<label class="col-sm-3 control-label is-required">所属地市:</label>
<div class="col-sm-8">
<input name="AREAID" th:field="*{AREAID}" class="form-control" type="text" required>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">所属区县:</label>
<div class="col-sm-8">
<input name="FRAMEWORK" th:field="*{FRAMEWORK}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">人员名称:</label>
<div class="col-sm-8">
<input name="USERNAME" th:field="*{USERNAME}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">单位名称:</label>
<div class="col-sm-8">
<input name="deptName" th:field="*{deptName}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训类型:</label>
<div class="col-sm-8">
<select name="trainType" class="form-control m-b" th:with="type=${@dict.getType('sys_usertrain_typer')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{trainType}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训对象:</label>
<div class="col-sm-8">
<select name="trainSubject" class="form-control m-b" th:with="type=${@dict.getType('sys_usertrain_obj')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{trainSubject}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训地点:</label>
<div class="col-sm-8">
<textarea name="trainAddress" class="form-control">[[*{trainAddress}]]</textarea>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训开始日期:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="trainDate" th:value="${#dates.format(tdTrain.trainDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训人员:</label>
<div class="col-sm-8">
<input name="trainName" th:field="*{trainName}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训结束时间:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="trainTimeend" th:value="${#dates.format(tdTrain.trainTimeend, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/train";
$("#form-train-edit").validate({
focusCleanup: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/edit", $('#form-train-edit').serialize());
}
}
$("input[name='trainDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='createDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='updateDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='trainTimeend']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
</script>
</body>
</html>

@ -0,0 +1,157 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
<th:block th:include="include :: header('涉密人员培训审核')" />
<th:block th:include="include :: datetimepicker-css" />
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-train-edit" th:object="${tdTrain}">
<input name="ID" th:field="*{ID}" type="hidden" readonly>
<div class="form-group">
<label class="col-sm-3 control-label is-required">所属地市:</label>
<div class="col-sm-8">
<input name="AREAID" th:field="*{AREAID}" class="form-control" readonly type="text" required>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">所属区县:</label>
<div class="col-sm-8">
<input name="FRAMEWORK" th:field="*{FRAMEWORK}" readonly class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">人员名称:</label>
<div class="col-sm-8">
<input name="USERNAME" th:field="*{USERNAME}" readonly class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">单位名称:</label>
<div class="col-sm-8">
<input name="deptName" th:field="*{deptName}" readonly class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训类型:</label>
<div class="col-sm-8">
<select name="trainType" class="form-control m-b" th:with="type=${@dict.getType('sys_usertrain_typer')}">
<option th:each="dict : ${type}" readonly th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{trainType}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训对象:</label>
<div class="col-sm-8">
<select name="trainSubject" class="form-control m-b" th:with="type=${@dict.getType('sys_usertrain_obj')}">
<option readonly th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{trainSubject}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训地点:</label>
<div class="col-sm-8">
<textarea name="trainAddress" readonly class="form-control">[[*{trainAddress}]]</textarea>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训开始日期:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="trainDate" readonly th:value="${#dates.format(tdTrain.trainDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训人员:</label>
<div class="col-sm-8">
<input name="trainName" readonly th:field="*{trainName}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训结束时间:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="trainTimeend" readonly th:value="${#dates.format(tdTrain.trainTimeend, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">更新单位:</label>
<div class="col-sm-8">
<input name="updateDepartid" th:field="*{updateDepartid}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">审核人员:</label>
<div class="col-sm-8">
<input name="updateStaffid" th:field="*{updateStaffid}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">审核时间:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="updateDate" th:value="${#dates.format(tdTrain.updateDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">审核状态:</label>
<div class="col-sm-8">
<select name="trainState" class="form-control m-b" th:with="type=${@dict.getType('sys_examine_state')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{trainState}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">培训评价:</label>
<div class="col-sm-8">
<input name="TRAININFO" th:field="*{TRAININFO}" class="form-control" type="text">
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/train";
$("#form-train-edit").validate({
focusCleanup: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/edit", $('#form-train-edit').serialize());
}
}
$("input[name='trainDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='createDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='updateDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='trainTimeend']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
</script>
</body>
</html>

@ -0,0 +1,202 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('涉密人员培训列表')" />
</head>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
<ul>
<li>
<label>人员名称:</label>
<input type="text" name="trainName"/>
</li>
<li>
<label>所属地市:</label>
<input type="text" name="AREAID"/>
</li>
<li>
<label>培训日期:</label>
<input type="text" class="time-input" placeholder="请选择培训日期" name="trainDate"/>
</li>
<li>
<label>培训状态:</label>
<select name="trainState" th:with="type=${@dict.getType('sys_examine_state')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
</li>
</ul>
</div>
</form>
</div>
<div class="btn-group-sm" id="toolbar" role="group">
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:train:add">
<i class="fa fa-plus"></i> 记录
</a>
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="system:train:edit">
<i class="fa fa-edit"></i> 修改
</a>
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:train:remove">
<i class="fa fa-remove"></i> 删除
</a>
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:train:export">
<i class="fa fa-download"></i> 导出
</a>
</div>
<div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table"></table>
</div>
</div>
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var detailFlag = [[${@permission.hasPermi('monitor:train:detail')}]];
var editFlag = [[${@permission.hasPermi('system:train:edit')}]];
var examineFlag = [[${@permission.hasPermi('system:train:examine')}]];
var removeFlag = [[${@permission.hasPermi('system:train:remove')}]];
var trainTypeDatas = [[${@dict.getType('sys_usertrain_typer')}]];
var trainSubjectDatas = [[${@dict.getType('sys_usertrain_obj')}]];
var trainStateDatas = [[${@dict.getType('sys_examine_state')}]];
var prefix = ctx + "system/train";
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "涉密人员培训",
columns: [{
checkbox: true
},
{
field: 'ID',
title: 'ID',
visible: false
},
{
field: 'AREAID',
title: '所属地市',
visible: false
},
{
field: 'trainName',
title: '培训人员'
},
{
field: 'FRAMEWORK',
title: '所属区县',
visible: false
},
{
field: 'USERNAME',
title: '人员名称',
visible: false
},
{
field: 'deptName',
title: '单位名称',
visible: false
},
{
field: 'trainType',
title: '培训类型',
formatter: function(value, row, index) {
return $.table.selectDictLabel(trainTypeDatas, value);
}
},
{
field: 'trainSubject',
title: '培训对象',
formatter: function(value, row, index) {
return $.table.selectDictLabel(trainSubjectDatas, value);
}
},
{
field: 'trainAddress',
title: '培训地点'
},
{
field: 'trainDate',
title: '培训开始日期'
},
{
field: 'trainTimeend',
title: '培训结束时间'
},
{
field: 'createStaffid',
title: '创建人',
visible: false
},
{
field: 'createDepartid',
title: '创建单位',
visible: false
},
{
field: 'createDate',
title: '创建日期',
visible: false
},
{
field: 'updateDepartid',
title: '更新单位',
visible: false
},
{
field: 'updateStaffid',
title: '审核人员'
},
{
field: 'updateDate',
title: '审核时间',
visible: false
},
{
field: 'trainState',
title: '培训状态',
formatter: function(value, row, index) {
return $.table.selectDictLabel(trainStateDatas, value);
}
},
{
field: 'PART',
title: '部门',
visible: false
},
{
field: 'TRAININFO',
title: '培训评价',
visible: false
},
{
title: '操作',
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-warning btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.id + '\')"><i class="fa fa-search"></i>详细</a> ');
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-success btn-xs ' + examineFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>审核</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a>');
return actions.join('');
}
}]
};
$.table.init(options);
});
</script>
</body>
</html>

@ -124,6 +124,69 @@
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">用户地区:</label>
<div class="col-sm-8">
<input name="userarea" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">民族:</label>
<div class="col-sm-8">
<select name="nation" class="form-control m-b" th:with="type=${@dict.getType('sys_user_nation')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">出生年月:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="birthday" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">政治面貌:</label>
<div class="col-sm-8">
<select name="politics" class="form-control m-b" th:with="type=${@dict.getType('sys_user_politics')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">涉密程度:</label>
<div class="col-sm-8">
<select name="shemichengdu" class="form-control m-b" th:with="type=${@dict.getType('sys_user_shemi')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">学历:</label>
<div class="col-sm-8">
<input name="graduate" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">生效时间:</label>
<div class="col-sm-8">
<input name="startdata" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">失效时间:</label>
<div class="col-sm-8">
<input name="enddata" class="form-control" value="2050-12-31" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">健康状况:</label>
<div class="col-sm-8">
<input name="helthy" class="form-control" type="text">
</div>
</div>
<h4 class="form-header h4">其他信息</h4>
<div class="row">
<div class="col-sm-12">
@ -210,8 +273,13 @@
},
focusCleanup: true
});
$("input[name='birthday']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
function submitHandler() {
var chrtype = [[${#strings.defaultString(@config.getKey('sys.account.chrtype'), 0)}]];
var password = $("#password").val();
if ($.validate.form() && checkpwd(chrtype, password)) {

@ -110,6 +110,8 @@
</div>
</div>
</div>
<h4 class="form-header h4">其他信息</h4>
<div class="row">
<div class="col-sm-12">
@ -213,6 +215,11 @@
$("#treeName").val(body.find('#treeName').val());
$.modal.close(index);
}
$("input[name='birthday']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$(function() {
$('#post').select2({

@ -1,10 +1,11 @@
package com.ruoyi.common.core.domain.entity;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import javax.validation.constraints.*;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.annotation.Excel.ColumnType;
@ -86,6 +87,115 @@ public class SysUser extends BaseEntity
/** 密码最后更新时间 */
private Date pwdUpdateDate;
/** 用户地区 */
@Excel(name = "用户地区")
private String userarea;
/** 民族 */
@Excel(name = "民族")
private String nation;
/** 出生年月 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "出生年月", width = 30, dateFormat = "yyyy-MM-dd")
private Date birthday;
public String getUserarea() {
return userarea;
}
public void setUserarea(String userarea) {
this.userarea = userarea;
}
public String getNation() {
return nation;
}
public void setNation(String nation) {
this.nation = nation;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getPolitics() {
return politics;
}
public void setPolitics(String politics) {
this.politics = politics;
}
public String getShemichengdu() {
return shemichengdu;
}
public void setShemichengdu(String shemichengdu) {
this.shemichengdu = shemichengdu;
}
public String getGraduate() {
return graduate;
}
public void setGraduate(String graduate) {
this.graduate = graduate;
}
public String getStartdata() {
return startdata;
}
public void setStartdata(String startdata) {
this.startdata = startdata;
}
public String getEnddata() {
return enddata;
}
public void setEnddata(String enddata) {
this.enddata = enddata;
}
public String getHelthy() {
return helthy;
}
public void setHelthy(String helthy) {
this.helthy = helthy;
}
/** 政治面貌 */
@Excel(name = "政治面貌")
private String politics;
/** 涉密程度 */
@Excel(name = "涉密程度")
private String shemichengdu;
/** 学历 */
@Excel(name = "学历")
private String graduate;
/** 生效时间 */
@Excel(name = "生效时间")
private String startdata;
/** 失效时间 */
@Excel(name = "失效时间")
private String enddata;
/** 健康状况 */
@Excel(name = "健康状况")
private String helthy;
/** 部门对象 */
@Excels({
@Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT),
@ -357,29 +467,38 @@ public class SysUser extends BaseEntity
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("userId", getUserId())
.append("deptId", getDeptId())
.append("loginName", getLoginName())
.append("userName", getUserName())
.append("userType", getUserType())
.append("email", getEmail())
.append("phonenumber", getPhonenumber())
.append("sex", getSex())
.append("avatar", getAvatar())
.append("password", getPassword())
.append("salt", getSalt())
.append("status", getStatus())
.append("delFlag", getDelFlag())
.append("loginIp", getLoginIp())
.append("loginDate", getLoginDate())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("remark", getRemark())
.append("dept", getDept())
.append("roles", getRoles())
.toString();
return "SysUser{" +
"userId=" + userId +
", deptId=" + deptId +
", parentId=" + parentId +
", roleId=" + roleId +
", loginName='" + loginName + '\'' +
", userName='" + userName + '\'' +
", userType='" + userType + '\'' +
", email='" + email + '\'' +
", phonenumber='" + phonenumber + '\'' +
", sex='" + sex + '\'' +
", avatar='" + avatar + '\'' +
", password='" + password + '\'' +
", salt='" + salt + '\'' +
", status='" + status + '\'' +
", delFlag='" + delFlag + '\'' +
", loginIp='" + loginIp + '\'' +
", loginDate=" + loginDate +
", pwdUpdateDate=" + pwdUpdateDate +
", userarea='" + userarea + '\'' +
", nation='" + nation + '\'' +
", birthday=" + birthday +
", politics='" + politics + '\'' +
", shemichengdu='" + shemichengdu + '\'' +
", graduate='" + graduate + '\'' +
", startdata='" + startdata + '\'' +
", enddata='" + enddata + '\'' +
", helthy='" + helthy + '\'' +
", dept=" + dept +
", roles=" + roles +
", roleIds=" + Arrays.toString(roleIds) +
", postIds=" + Arrays.toString(postIds) +
'}';
}
}

@ -56,4 +56,14 @@ public enum BusinessType
*
*/
CLEAN,
/**
*
*/
EXAM,
/**
*
*/
EXAMINE,
}

@ -0,0 +1,22 @@
package com.ruoyi.common.utils;
import java.util.ArrayList;
import java.util.Random;
public class ArrayListRandom {
public static ArrayList<Integer> generateRandomIDs(int min, int max, int total) {
ArrayList<Integer> ids = new ArrayList<>();
Random random = new Random();
for (int i = 0; i < total; i++) {
int id = random.nextInt(max - min + 1) + min;
if (!ids.contains(id)) {
ids.add(id);
} else {
i--; // 如果ID已存在重新生成
}
}
return ids;
}
}

@ -23,6 +23,13 @@
<artifactId>ruoyi-common</artifactId>
</dependency>
<!-- mybatisplus-->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.2</version>
</dependency>
</dependencies>
</project>

@ -0,0 +1,125 @@
package com.ruoyi.system.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
/**
* td_examnum
*
* @author ruoyi
* @date 2024-04-10
*/
public class TdExamnum extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** id */
private Long id;
/** 考试姓名 */
@Excel(name = "考试姓名")
private String userName;
/** 考试分数 */
@Excel(name = "考试分数")
private Long examResult;
/** 开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date startTime;
/** 结束时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date endTime;
/** 单位名称 */
@Excel(name = "单位名称")
private String dept;
/** 试题类型 */
@Excel(name = "试题类型")
private String tyep;
public void setId(Long id)
{
this.id = id;
}
public Long getId()
{
return id;
}
public void setUserName(String userName)
{
this.userName = userName;
}
public String getUserName()
{
return userName;
}
public void setExamResult(Long examResult)
{
this.examResult = examResult;
}
public Long getExamResult()
{
return examResult;
}
public void setStartTime(Date startTime)
{
this.startTime = startTime;
}
public Date getStartTime()
{
return startTime;
}
public void setEndTime(Date endTime)
{
this.endTime = endTime;
}
public Date getEndTime()
{
return endTime;
}
public void setDept(String dept)
{
this.dept = dept;
}
public String getDept()
{
return dept;
}
public void setTyep(String tyep)
{
this.tyep = tyep;
}
public String getTyep()
{
return tyep;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("userName", getUserName())
.append("examResult", getExamResult())
.append("startTime", getStartTime())
.append("endTime", getEndTime())
.append("dept", getDept())
.append("tyep", getTyep())
.toString();
}
}

@ -0,0 +1,309 @@
package com.ruoyi.system.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
/**
* td_train
*
* @author ruoyi
* @date 2024-04-11
*/
public class TdTrain extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** ID */
private Long ID;
/** 人员名称 */
@Excel(name = "人员名称")
private String USERNAME;
/** 单位名称 */
@Excel(name = "单位名称")
private String deptName;
/** 培训类型 */
@Excel(name = "培训类型")
private String trainType;
/** 培训对象 */
@Excel(name = "培训对象")
private String trainSubject;
/** 培训地点 */
@Excel(name = "培训地点")
private String trainAddress;
/** 培训日期 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "培训日期", width = 30, dateFormat = "yyyy-MM-dd")
private Date trainDate;
/** 创建人 */
@Excel(name = "创建人")
private String createStaffid;
/** 创建单位 */
@Excel(name = "创建单位")
private String createDepartid;
/** 创建日期 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "创建日期", width = 30, dateFormat = "yyyy-MM-dd")
private Date createDate;
/** 更新单位 */
@Excel(name = "更新单位")
private String updateDepartid;
/** 更新人员 */
@Excel(name = "更新人员")
private String updateStaffid;
/** 更新时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date updateDate;
/** 所属地市 */
@Excel(name = "所属地市")
private String AREAID;
/** 所属区县 */
@Excel(name = "所属区县")
private String FRAMEWORK;
/** 培训人员 */
@Excel(name = "培训人员")
private String trainName;
/** 培训状态 */
@Excel(name = "培训状态")
private Long trainState;
/** 培训结束时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "培训结束时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date trainTimeend;
/** 部门 */
@Excel(name = "部门")
private String PART;
/** 培训评价 */
@Excel(name = "培训评价")
private String TRAININFO;
public void setID(Long ID)
{
this.ID = ID;
}
public Long getID()
{
return ID;
}
public void setUSERNAME(String USERNAME)
{
this.USERNAME = USERNAME;
}
public String getUSERNAME()
{
return USERNAME;
}
public void setDeptName(String deptName)
{
this.deptName = deptName;
}
public String getDeptName()
{
return deptName;
}
public void setTrainType(String trainType)
{
this.trainType = trainType;
}
public String getTrainType()
{
return trainType;
}
public void setTrainSubject(String trainSubject)
{
this.trainSubject = trainSubject;
}
public String getTrainSubject()
{
return trainSubject;
}
public void setTrainAddress(String trainAddress)
{
this.trainAddress = trainAddress;
}
public String getTrainAddress()
{
return trainAddress;
}
public void setTrainDate(Date trainDate)
{
this.trainDate = trainDate;
}
public Date getTrainDate()
{
return trainDate;
}
public void setCreateStaffid(String createStaffid)
{
this.createStaffid = createStaffid;
}
public String getCreateStaffid()
{
return createStaffid;
}
public void setCreateDepartid(String createDepartid)
{
this.createDepartid = createDepartid;
}
public String getCreateDepartid()
{
return createDepartid;
}
public void setCreateDate(Date createDate)
{
this.createDate = createDate;
}
public Date getCreateDate()
{
return createDate;
}
public void setUpdateDepartid(String updateDepartid)
{
this.updateDepartid = updateDepartid;
}
public String getUpdateDepartid()
{
return updateDepartid;
}
public void setUpdateStaffid(String updateStaffid)
{
this.updateStaffid = updateStaffid;
}
public String getUpdateStaffid()
{
return updateStaffid;
}
public void setUpdateDate(Date updateDate)
{
this.updateDate = updateDate;
}
public Date getUpdateDate()
{
return updateDate;
}
public void setAREAID(String AREAID)
{
this.AREAID = AREAID;
}
public String getAREAID()
{
return AREAID;
}
public void setFRAMEWORK(String FRAMEWORK)
{
this.FRAMEWORK = FRAMEWORK;
}
public String getFRAMEWORK()
{
return FRAMEWORK;
}
public void setTrainName(String trainName)
{
this.trainName = trainName;
}
public String getTrainName()
{
return trainName;
}
public void setTrainState(Long trainState)
{
this.trainState = trainState;
}
public Long getTrainState()
{
return trainState;
}
public void setTrainTimeend(Date trainTimeend)
{
this.trainTimeend = trainTimeend;
}
public Date getTrainTimeend()
{
return trainTimeend;
}
public void setPART(String PART)
{
this.PART = PART;
}
public String getPART()
{
return PART;
}
public void setTRAININFO(String TRAININFO)
{
this.TRAININFO = TRAININFO;
}
public String getTRAININFO()
{
return TRAININFO;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("ID", getID())
.append("USERNAME", getUSERNAME())
.append("deptName", getDeptName())
.append("trainType", getTrainType())
.append("trainSubject", getTrainSubject())
.append("trainAddress", getTrainAddress())
.append("trainDate", getTrainDate())
.append("createStaffid", getCreateStaffid())
.append("createDepartid", getCreateDepartid())
.append("createDate", getCreateDate())
.append("updateDepartid", getUpdateDepartid())
.append("updateStaffid", getUpdateStaffid())
.append("updateDate", getUpdateDate())
.append("AREAID", getAREAID())
.append("FRAMEWORK", getFRAMEWORK())
.append("trainName", getTrainName())
.append("trainState", getTrainState())
.append("trainTimeend", getTrainTimeend())
.append("PART", getPART())
.append("TRAININFO", getTRAININFO())
.toString();
}
}

@ -0,0 +1,63 @@
package com.ruoyi.system.mapper;
import java.util.List;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.system.domain.TdExamnum;
/**
* Mapper
*
* @author ruoyi
* @date 2024-04-10
*/
public interface TdExamnumMapper extends BaseMapper<TdExamnum>
{
/**
*
*
* @param id
* @return
*/
public TdExamnum selectTdExamnumById(Long id);
/**
*
*
* @param tdExamnum
* @return
*/
public List<TdExamnum> selectTdExamnumList(TdExamnum tdExamnum);
/**
*
*
* @param tdExamnum
* @return
*/
public int insertTdExamnum(TdExamnum tdExamnum);
/**
*
*
* @param tdExamnum
* @return
*/
public int updateTdExamnum(TdExamnum tdExamnum);
/**
*
*
* @param id
* @return
*/
public int deleteTdExamnumById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTdExamnumByIds(String[] ids);
}

@ -0,0 +1,63 @@
package com.ruoyi.system.mapper;
import java.util.List;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.system.domain.TdTrain;
/**
* Mapper
*
* @author ruoyi
* @date 2024-04-11
*/
public interface TdTrainMapper extends BaseMapper<TdTrain>
{
/**
*
*
* @param ID
* @return
*/
public TdTrain selectTdTrainByID(Long ID);
/**
*
*
* @param tdTrain
* @return
*/
public List<TdTrain> selectTdTrainList(TdTrain tdTrain);
/**
*
*
* @param tdTrain
* @return
*/
public int insertTdTrain(TdTrain tdTrain);
/**
*
*
* @param tdTrain
* @return
*/
public int updateTdTrain(TdTrain tdTrain);
/**
*
*
* @param ID
* @return
*/
public int deleteTdTrainByID(Long ID);
/**
*
*
* @param IDs
* @return
*/
public int deleteTdTrainByIDs(String[] IDs);
}

@ -0,0 +1,63 @@
package com.ruoyi.system.service;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.TdExamnum;
/**
* Service
*
* @author ruoyi
* @date 2024-04-10
*/
public interface ITdExamnumService extends IService<TdExamnum>
{
/**
*
*
* @param id
* @return
*/
public TdExamnum selectTdExamnumById(Long id);
/**
*
*
* @param tdExamnum
* @return
*/
public List<TdExamnum> selectTdExamnumList(TdExamnum tdExamnum);
/**
*
*
* @param tdExamnum
* @return
*/
public int insertTdExamnum(TdExamnum tdExamnum);
/**
*
*
* @param tdExamnum
* @return
*/
public int updateTdExamnum(TdExamnum tdExamnum);
/**
*
*
* @param ids
* @return
*/
public int deleteTdExamnumByIds(String ids);
/**
*
*
* @param id
* @return
*/
public int deleteTdExamnumById(Long id);
}

@ -0,0 +1,64 @@
package com.ruoyi.system.service;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.TdTrain;
/**
* Service
*
* @author ruoyi
* @date 2024-04-11
*/
public interface ITdTrainService extends IService<TdTrain>
{
/**
*
*
* @param ID
* @return
*/
public TdTrain selectTdTrainByID(Long ID);
/**
*
*
* @param tdTrain
* @return
*/
public List<TdTrain> selectTdTrainList(TdTrain tdTrain);
/**
*
*
* @param tdTrain
* @return
*/
public int insertTdTrain(TdTrain tdTrain);
/**
*
*
* @param tdTrain
* @return
*/
public int updateTdTrain(TdTrain tdTrain);
/**
*
*
* @param IDs
* @return
*/
public int deleteTdTrainByIDs(String IDs);
/**
*
*
* @param ID
* @return
*/
public int deleteTdTrainByID(Long ID);
}

@ -0,0 +1,101 @@
package com.ruoyi.system.service.impl;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.system.mapper.TdExamnumMapper;
import com.ruoyi.system.domain.TdExamnum;
import com.ruoyi.system.service.ITdExamnumService;
import com.ruoyi.common.core.text.Convert;
/**
* Service
*
* @author ruoyi
* @date 2024-04-10
*/
@Service
public class TdExamnumServiceImpl extends ServiceImpl<TdExamnumMapper,TdExamnum> implements ITdExamnumService
{
@Autowired
private TdExamnumMapper tdExamnumMapper;
/**
*
*
* @param id
* @return
*/
@Override
public TdExamnum selectTdExamnumById(Long id)
{
return tdExamnumMapper.selectTdExamnumById(id);
}
/**
*
*
* @param tdExamnum
* @return
*/
@Override
public List<TdExamnum> selectTdExamnumList(TdExamnum tdExamnum)
{
return tdExamnumMapper.selectTdExamnumList(tdExamnum);
}
/**
*
*
* @param tdExamnum
* @return
*/
@Override
public int insertTdExamnum(TdExamnum tdExamnum)
{
return tdExamnumMapper.insertTdExamnum(tdExamnum);
}
/**
*
*
* @param tdExamnum
* @return
*/
@Override
public int updateTdExamnum(TdExamnum tdExamnum)
{
return tdExamnumMapper.updateTdExamnum(tdExamnum);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteTdExamnumByIds(String ids)
{
return tdExamnumMapper.deleteTdExamnumByIds(Convert.toStrArray(ids));
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteTdExamnumById(Long id)
{
return tdExamnumMapper.deleteTdExamnumById(id);
}
}

@ -0,0 +1,142 @@
package com.ruoyi.system.service.impl;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.system.mapper.TdTrainMapper;
import com.ruoyi.system.domain.TdTrain;
import com.ruoyi.system.service.ITdTrainService;
import com.ruoyi.common.core.text.Convert;
/**
* Service
*
* @author ruoyi
* @date 2024-04-11
*/
@Service
public class TdTrainServiceImpl extends ServiceImpl<TdTrainMapper,TdTrain> implements ITdTrainService
{
@Autowired
private TdTrainMapper tdTrainMapper;
/**
*
*
* @param ID
* @return
*/
@Override
public TdTrain selectTdTrainByID(Long ID)
{
return tdTrainMapper.selectTdTrainByID(ID);
}
/**
*
*
* @param tdTrain
* @return
*/
@Override
public List<TdTrain> selectTdTrainList(TdTrain tdTrain)
{
return tdTrainMapper.selectTdTrainList(tdTrain);
}
/**
*
*
* @param tdTrain
* @return
*/
@Override
public int insertTdTrain(TdTrain tdTrain)
{
return tdTrainMapper.insertTdTrain(tdTrain);
}
/**
*
*
* @param tdTrain
* @return
*/
@Override
public int updateTdTrain(TdTrain tdTrain)
{
return tdTrainMapper.updateTdTrain(tdTrain);
}
/**
*
*
* @param IDs
* @return
*/
@Override
public int deleteTdTrainByIDs(String IDs)
{
return tdTrainMapper.deleteTdTrainByIDs(Convert.toStrArray(IDs));
}
/**
*
*
* @param ID
* @return
*/
@Override
public int deleteTdTrainByID(Long ID)
{
return tdTrainMapper.deleteTdTrainByID(ID);
}
@Override
public boolean saveBatch(Collection<TdTrain> entityList, int batchSize) {
return false;
}
@Override
public boolean saveOrUpdateBatch(Collection<TdTrain> entityList, int batchSize) {
return false;
}
@Override
public boolean updateBatchById(Collection<TdTrain> entityList, int batchSize) {
return false;
}
@Override
public boolean saveOrUpdate(TdTrain entity) {
return false;
}
@Override
public TdTrain getOne(Wrapper<TdTrain> queryWrapper, boolean throwEx) {
return null;
}
@Override
public Map<String, Object> getMap(Wrapper<TdTrain> queryWrapper) {
return null;
}
@Override
public <V> V getObj(Wrapper<TdTrain> queryWrapper, Function<? super Object, V> mapper) {
return null;
}
@Override
public Class<TdTrain> getEntityClass() {
return null;
}
}

@ -31,7 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<insert id="insertOperlog" parameterType="SysOperLog">
insert into sys_oper_log(title, business_type, method, request_method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status, error_msg, cost_time, oper_time)
values (#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}, #{errorMsg}, #{costTime}, sysdate())
values (#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}, #{errorMsg}, #{costTime}, now())
</insert>
<select id="selectOperLogList" parameterType="SysOperLog" resultMap="SysOperLogResult">

@ -26,6 +26,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
<result property="userarea" column="userarea" />
<result property="nation" column="nation" />
<result property="birthday" column="birthday" />
<result property="politics" column="politics" />
<result property="shemichengdu" column="shemichengdu" />
<result property="graduate" column="graduate" />
<result property="startdata" column="startdata" />
<result property="enddata" column="enddata" />
<result property="helthy" column="helthy" />
<association property="dept" column="dept_id" javaType="SysDept" resultMap="deptResult" />
<collection property="roles" javaType="java.util.List" resultMap="RoleResult" />
</resultMap>
@ -50,7 +59,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap>
<sql id="selectUserVo">
select u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.sex, u.password, u.salt, u.status, u.del_flag, u.login_ip, u.login_date, u.pwd_update_date, u.create_time, u.remark,
select u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.sex, u.password, u.salt, u.status, u.del_flag, u.login_ip, u.login_date, u.pwd_update_date, u.create_time, u.remark,userarea, nation, birthday, politics, shemichengdu, graduate, startdata, enddata, helthy,
d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.status as dept_status,
r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status
from sys_user u
@ -60,7 +69,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql>
<select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult">
select u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.salt, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader from sys_user u
select u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.password, u.sex, u.salt, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, userarea, nation, birthday, politics, shemichengdu, graduate, startdata, enddata, helthy,d.dept_name, d.leader from sys_user u
left join sys_dept d on u.dept_id = d.dept_id
where u.del_flag = '0'
<if test="userId != null and userId != 0">
@ -89,7 +98,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</select>
<select id="selectAllocatedList" parameterType="SysUser" resultMap="SysUserResult">
select distinct u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.status, u.create_time
select distinct u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.status, u.create_time,userarea, nation, birthday, politics, shemichengdu, graduate, startdata, enddata, helthy
from sys_user u
left join sys_dept d on u.dept_id = d.dept_id
left join sys_user_role ur on u.user_id = ur.user_id
@ -106,7 +115,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</select>
<select id="selectUnallocatedList" parameterType="SysUser" resultMap="SysUserResult">
select distinct u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.status, u.create_time
select distinct u.user_id, u.dept_id, u.login_name, u.user_name, u.user_type, u.email, u.avatar, u.phonenumber, u.status, u.create_time,userarea, nation, birthday, politics, shemichengdu, graduate, startdata, enddata, helthy
from sys_user u
left join sys_dept d on u.dept_id = d.dept_id
left join sys_user_role ur on u.user_id = ur.user_id
@ -185,6 +194,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="pwdUpdateDate != null">pwd_update_date = #{pwdUpdateDate},</if>
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="userarea != null">userarea = #{userarea},</if>
<if test="nation != null">nation = #{nation},</if>
<if test="birthday != null">birthday = #{birthday},</if>
<if test="politics != null">politics = #{politics},</if>
<if test="shemichengdu != null">shemichengdu = #{shemichengdu},</if>
<if test="graduate != null">graduate = #{graduate},</if>
<if test="helthy != null">helthy = #{helthy},</if>
update_time = sysdate()
</set>
where user_id = #{userId}
@ -207,6 +223,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="pwdUpdateDate != null">pwd_update_date,</if>
<if test="createBy != null and createBy != ''">create_by,</if>
<if test="remark != null and remark != ''">remark,</if>
<if test="userarea != null">userarea,</if>
<if test="nation != null">nation,</if>
<if test="birthday != null">birthday,</if>
<if test="politics != null">politics,</if>
<if test="shemichengdu != null">shemichengdu,</if>
<if test="graduate != null">graduate,</if>
<if test="helthy != null">helthy,</if>
create_time
)values(
<if test="userId != null and userId != ''">#{userId},</if>
@ -224,6 +247,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="pwdUpdateDate != null">#{pwdUpdateDate},</if>
<if test="createBy != null and createBy != ''">#{createBy},</if>
<if test="remark != null and remark != ''">#{remark},</if>
<if test="userarea != null">#{userarea},</if>
<if test="nation != null">#{nation},</if>
<if test="birthday != null">#{birthday},</if>
<if test="politics != null">#{politics},</if>
<if test="shemichengdu != null">#{shemichengdu},</if>
<if test="graduate != null">#{graduate},</if>
<if test="startdata != null">#{startdata},</if>
<if test="enddata != null">#{enddata},</if>
<if test="helthy != null">#{helthy},</if>
sysdate()
)
</insert>

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.system.mapper.TdExamnumMapper">
<resultMap type="TdExamnum" id="TdExamnumResult">
<result property="id" column="id" />
<result property="userName" column="userName" />
<result property="examResult" column="examResult" />
<result property="startTime" column="startTime" />
<result property="endTime" column="endTime" />
<result property="dept" column="dept" />
<result property="tyep" column="tyep" />
</resultMap>
<sql id="selectTdExamnumVo">
select id, userName, examResult, startTime, endTime, dept, tyep from td_examnum
</sql>
<select id="selectTdExamnumList" parameterType="TdExamnum" resultMap="TdExamnumResult">
<include refid="selectTdExamnumVo"/>
<where>
<if test="userName != null and userName != ''"> and userName like concat('%', #{userName}, '%')</if>
<if test="examResult != null "> and examResult = #{examResult}</if>
<if test="startTime != null "> and startTime = #{startTime}</if>
<if test="endTime != null "> and endTime = #{endTime}</if>
<if test="dept != null and dept != ''"> and dept = #{dept}</if>
<if test="tyep != null and tyep != ''"> and tyep = #{tyep}</if>
</where>
</select>
<select id="selectTdExamnumById" parameterType="Long" resultMap="TdExamnumResult">
<include refid="selectTdExamnumVo"/>
where id = #{id}
</select>
<insert id="insertTdExamnum" parameterType="TdExamnum" useGeneratedKeys="true" keyProperty="id">
insert into td_examnum
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="userName != null">userName,</if>
<if test="examResult != null">examResult,</if>
<if test="startTime != null">startTime,</if>
<if test="endTime != null">endTime,</if>
<if test="dept != null">dept,</if>
<if test="tyep != null">tyep,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="userName != null">#{userName},</if>
<if test="examResult != null">#{examResult},</if>
<if test="startTime != null">#{startTime},</if>
<if test="endTime != null">#{endTime},</if>
<if test="dept != null">#{dept},</if>
<if test="tyep != null">#{tyep},</if>
</trim>
</insert>
<update id="updateTdExamnum" parameterType="TdExamnum">
update td_examnum
<trim prefix="SET" suffixOverrides=",">
<if test="userName != null">userName = #{userName},</if>
<if test="examResult != null">examResult = #{examResult},</if>
<if test="startTime != null">startTime = #{startTime},</if>
<if test="endTime != null">endTime = #{endTime},</if>
<if test="dept != null">dept = #{dept},</if>
<if test="tyep != null">tyep = #{tyep},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTdExamnumById" parameterType="Long">
delete from td_examnum where id = #{id}
</delete>
<delete id="deleteTdExamnumByIds" parameterType="String">
delete from td_examnum where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

@ -0,0 +1,147 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.system.mapper.TdTrainMapper">
<resultMap type="TdTrain" id="TdTrainResult">
<result property="ID" column="ID" />
<result property="USERNAME" column="USERNAME" />
<result property="deptName" column="DEPT_NAME" />
<result property="trainType" column="TRAIN_TYPE" />
<result property="trainSubject" column="TRAIN_SUBJECT" />
<result property="trainAddress" column="TRAIN_ADDRESS" />
<result property="trainDate" column="TRAIN_DATE" />
<result property="createStaffid" column="CREATE_STAFFID" />
<result property="createDepartid" column="CREATE_DEPARTID" />
<result property="createDate" column="CREATE_DATE" />
<result property="updateDepartid" column="UPDATE_DEPARTID" />
<result property="updateStaffid" column="UPDATE_STAFFID" />
<result property="updateDate" column="UPDATE_DATE" />
<result property="AREAID" column="AREAID" />
<result property="FRAMEWORK" column="FRAMEWORK" />
<result property="trainName" column="TRAIN_NAME" />
<result property="trainState" column="TRAIN_STATE" />
<result property="trainTimeend" column="TRAIN_TIMEEND" />
<result property="PART" column="PART" />
<result property="TRAININFO" column="TRAININFO" />
</resultMap>
<sql id="selectTdTrainVo">
select ID, USERNAME, DEPT_NAME, TRAIN_TYPE, TRAIN_SUBJECT, TRAIN_ADDRESS, TRAIN_DATE, CREATE_STAFFID, CREATE_DEPARTID, CREATE_DATE, UPDATE_DEPARTID, UPDATE_STAFFID, UPDATE_DATE, AREAID, FRAMEWORK, TRAIN_NAME, TRAIN_STATE, TRAIN_TIMEEND, PART, TRAININFO from td_train
</sql>
<select id="selectTdTrainList" parameterType="TdTrain" resultMap="TdTrainResult">
<include refid="selectTdTrainVo"/>
<where>
<if test="USERNAME != null and USERNAME != ''"> and USERNAME like concat('%', #{USERNAME}, '%')</if>
<if test="deptName != null and deptName != ''"> and DEPT_NAME like concat('%', #{deptName}, '%')</if>
<if test="trainType != null and trainType != ''"> and TRAIN_TYPE = #{trainType}</if>
<if test="trainSubject != null and trainSubject != ''"> and TRAIN_SUBJECT = #{trainSubject}</if>
<if test="trainAddress != null and trainAddress != ''"> and TRAIN_ADDRESS = #{trainAddress}</if>
<if test="trainDate != null "> and TRAIN_DATE = #{trainDate}</if>
<if test="createStaffid != null and createStaffid != ''"> and CREATE_STAFFID = #{createStaffid}</if>
<if test="createDepartid != null and createDepartid != ''"> and CREATE_DEPARTID = #{createDepartid}</if>
<if test="createDate != null "> and CREATE_DATE = #{createDate}</if>
<if test="updateDepartid != null and updateDepartid != ''"> and UPDATE_DEPARTID = #{updateDepartid}</if>
<if test="updateStaffid != null and updateStaffid != ''"> and UPDATE_STAFFID = #{updateStaffid}</if>
<if test="updateDate != null "> and UPDATE_DATE = #{updateDate}</if>
<if test="AREAID != null and AREAID != ''"> and AREAID = #{AREAID}</if>
<if test="FRAMEWORK != null and FRAMEWORK != ''"> and FRAMEWORK = #{FRAMEWORK}</if>
<if test="trainName != null and trainName != ''"> and TRAIN_NAME like concat('%', #{trainName}, '%')</if>
<if test="trainState != null "> and TRAIN_STATE = #{trainState}</if>
<if test="trainTimeend != null "> and TRAIN_TIMEEND = #{trainTimeend}</if>
<if test="PART != null and PART != ''"> and PART = #{PART}</if>
<if test="TRAININFO != null and TRAININFO != ''"> and TRAININFO = #{TRAININFO}</if>
</where>
</select>
<select id="selectTdTrainByID" parameterType="Long" resultMap="TdTrainResult">
<include refid="selectTdTrainVo"/>
where ID = #{ID}
</select>
<insert id="insertTdTrain" parameterType="TdTrain" useGeneratedKeys="true" keyProperty="ID">
insert into td_train
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="USERNAME != null">USERNAME,</if>
<if test="deptName != null">DEPT_NAME,</if>
<if test="trainType != null">TRAIN_TYPE,</if>
<if test="trainSubject != null">TRAIN_SUBJECT,</if>
<if test="trainAddress != null">TRAIN_ADDRESS,</if>
<if test="trainDate != null">TRAIN_DATE,</if>
<if test="createStaffid != null">CREATE_STAFFID,</if>
<if test="createDepartid != null">CREATE_DEPARTID,</if>
<if test="createDate != null">CREATE_DATE,</if>
<if test="updateDepartid != null">UPDATE_DEPARTID,</if>
<if test="updateStaffid != null">UPDATE_STAFFID,</if>
<if test="updateDate != null">UPDATE_DATE,</if>
<if test="AREAID != null and AREAID != ''">AREAID,</if>
<if test="FRAMEWORK != null">FRAMEWORK,</if>
<if test="trainName != null">TRAIN_NAME,</if>
<if test="trainState != null">TRAIN_STATE,</if>
<if test="trainTimeend != null">TRAIN_TIMEEND,</if>
<if test="PART != null">PART,</if>
<if test="TRAININFO != null">TRAININFO,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="USERNAME != null">#{USERNAME},</if>
<if test="deptName != null">#{deptName},</if>
<if test="trainType != null">#{trainType},</if>
<if test="trainSubject != null">#{trainSubject},</if>
<if test="trainAddress != null">#{trainAddress},</if>
<if test="trainDate != null">#{trainDate},</if>
<if test="createStaffid != null">#{createStaffid},</if>
<if test="createDepartid != null">#{createDepartid},</if>
<if test="createDate != null">#{createDate},</if>
<if test="updateDepartid != null">#{updateDepartid},</if>
<if test="updateStaffid != null">#{updateStaffid},</if>
<if test="updateDate != null">#{updateDate},</if>
<if test="AREAID != null and AREAID != ''">#{AREAID},</if>
<if test="FRAMEWORK != null">#{FRAMEWORK},</if>
<if test="trainName != null">#{trainName},</if>
<if test="trainState != null">#{trainState},</if>
<if test="trainTimeend != null">#{trainTimeend},</if>
<if test="PART != null">#{PART},</if>
<if test="TRAININFO != null">#{TRAININFO},</if>
</trim>
</insert>
<update id="updateTdTrain" parameterType="TdTrain">
update td_train
<trim prefix="SET" suffixOverrides=",">
<if test="USERNAME != null">USERNAME = #{USERNAME},</if>
<if test="deptName != null">DEPT_NAME = #{deptName},</if>
<if test="trainType != null">TRAIN_TYPE = #{trainType},</if>
<if test="trainSubject != null">TRAIN_SUBJECT = #{trainSubject},</if>
<if test="trainAddress != null">TRAIN_ADDRESS = #{trainAddress},</if>
<if test="trainDate != null">TRAIN_DATE = #{trainDate},</if>
<if test="createStaffid != null">CREATE_STAFFID = #{createStaffid},</if>
<if test="createDepartid != null">CREATE_DEPARTID = #{createDepartid},</if>
<if test="createDate != null">CREATE_DATE = #{createDate},</if>
<if test="updateDepartid != null">UPDATE_DEPARTID = #{updateDepartid},</if>
<if test="updateStaffid != null">UPDATE_STAFFID = #{updateStaffid},</if>
<if test="updateDate != null">UPDATE_DATE = #{updateDate},</if>
<if test="AREAID != null and AREAID != ''">AREAID = #{AREAID},</if>
<if test="FRAMEWORK != null">FRAMEWORK = #{FRAMEWORK},</if>
<if test="trainName != null">TRAIN_NAME = #{trainName},</if>
<if test="trainState != null">TRAIN_STATE = #{trainState},</if>
<if test="trainTimeend != null">TRAIN_TIMEEND = #{trainTimeend},</if>
<if test="PART != null">PART = #{PART},</if>
<if test="TRAININFO != null">TRAININFO = #{TRAININFO},</if>
</trim>
where ID = #{ID}
</update>
<delete id="deleteTdTrainByID" parameterType="Long">
delete from td_train where ID = #{ID}
</delete>
<delete id="deleteTdTrainByIDs" parameterType="String">
delete from td_train where ID in
<foreach item="ID" collection="array" open="(" separator="," close=")">
#{ID}
</foreach>
</delete>
</mapper>
Loading…
Cancel
Save