From b464b9811aceba8e23f19c3f59bb35daebeee596 Mon Sep 17 00:00:00 2001 From: 20918 <2091823062@qq.com> Date: Thu, 11 Apr 2024 15:31:02 +0800 Subject: [PATCH] renyuanpeixun --- .../system/TdExamnumController.java | 6 - .../controller/system/TdTrainController.java | 138 ++++++++ .../resources/templates/system/train/add.html | 144 ++++++++ .../templates/system/train/edit.html | 122 +++++++ .../templates/system/train/train.html | 203 ++++++++++++ .../ruoyi/common/utils/ArrayListRandom.java | 22 ++ .../java/com/ruoyi/system/domain/TdTrain.java | 309 ++++++++++++++++++ .../ruoyi/system/mapper/TdTrainMapper.java | 63 ++++ .../ruoyi/system/service/ITdTrainService.java | 64 ++++ .../service/impl/TdTrainServiceImpl.java | 142 ++++++++ .../resources/mapper/system/TdTrainMapper.xml | 147 +++++++++ 11 files changed, 1354 insertions(+), 6 deletions(-) create mode 100644 ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdTrainController.java create mode 100644 ruoyi-admin/src/main/resources/templates/system/train/add.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/train/edit.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/train/train.html create mode 100644 ruoyi-common/src/main/java/com/ruoyi/common/utils/ArrayListRandom.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/domain/TdTrain.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdTrainMapper.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/service/ITdTrainService.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdTrainServiceImpl.java create mode 100644 ruoyi-system/src/main/resources/mapper/system/TdTrainMapper.xml diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdExamnumController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdExamnumController.java index c3cd768..7256095 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdExamnumController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdExamnumController.java @@ -133,10 +133,4 @@ public class TdExamnumController extends BaseController * @param */ // 新增提交 - @PostMapping("/add") - @ResponseBody - public AjaxResult addSaveExamnum(@Validated TdExamnum tdExamnum) - { - return toAjax(tdExamnumService.insertTdExamnum(tdExamnum)); - } } diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdTrainController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdTrainController.java new file mode 100644 index 0000000..3c240e1 --- /dev/null +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdTrainController.java @@ -0,0 +1,138 @@ +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 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 list = tdTrainService.selectTdTrainList(tdTrain); + ExcelUtil util = new ExcelUtil(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"; + } +} diff --git a/ruoyi-admin/src/main/resources/templates/system/train/add.html b/ruoyi-admin/src/main/resources/templates/system/train/add.html new file mode 100644 index 0000000..e76d9c7 --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/train/add.html @@ -0,0 +1,144 @@ + + + + + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+ +
+
+
+ +
+
+ + +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+
+
+ + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/train/edit.html b/ruoyi-admin/src/main/resources/templates/system/train/edit.html new file mode 100644 index 0000000..8860258 --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/train/edit.html @@ -0,0 +1,122 @@ + + + + + + + +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + +
+
+
+
+ +
+ +
+
+
+ +
+
+ + +
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/train/train.html b/ruoyi-admin/src/main/resources/templates/system/train/train.html new file mode 100644 index 0000000..9eec96d --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/train/train.html @@ -0,0 +1,203 @@ + + + + + + +
+
+
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • + +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
+ + +
+
+
+
+
+ + + + \ No newline at end of file diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/utils/ArrayListRandom.java b/ruoyi-common/src/main/java/com/ruoyi/common/utils/ArrayListRandom.java new file mode 100644 index 0000000..c6a7105 --- /dev/null +++ b/ruoyi-common/src/main/java/com/ruoyi/common/utils/ArrayListRandom.java @@ -0,0 +1,22 @@ +package com.ruoyi.common.utils; + +import java.util.ArrayList; +import java.util.Random; + +public class ArrayListRandom { + public static ArrayList generateRandomIDs(int min, int max, int total) { + ArrayList 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; + } +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdTrain.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdTrain.java new file mode 100644 index 0000000..40aeff1 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdTrain.java @@ -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(); + } +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdTrainMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdTrainMapper.java new file mode 100644 index 0000000..2552284 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdTrainMapper.java @@ -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 +{ + /** + * 查询涉密人员培训 + * + * @param ID 涉密人员培训主键 + * @return 涉密人员培训 + */ + public TdTrain selectTdTrainByID(Long ID); + + /** + * 查询涉密人员培训列表 + * + * @param tdTrain 涉密人员培训 + * @return 涉密人员培训集合 + */ + public List 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); +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdTrainService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdTrainService.java new file mode 100644 index 0000000..fd9a950 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdTrainService.java @@ -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 +{ + /** + * 查询涉密人员培训 + * + * @param ID 涉密人员培训主键 + * @return 涉密人员培训 + */ + public TdTrain selectTdTrainByID(Long ID); + + /** + * 查询涉密人员培训列表 + * + * @param tdTrain 涉密人员培训 + * @return 涉密人员培训集合 + */ + public List 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); + +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdTrainServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdTrainServiceImpl.java new file mode 100644 index 0000000..7488fd7 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdTrainServiceImpl.java @@ -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 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 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 entityList, int batchSize) { + return false; + } + + @Override + public boolean saveOrUpdateBatch(Collection entityList, int batchSize) { + return false; + } + + @Override + public boolean updateBatchById(Collection entityList, int batchSize) { + return false; + } + + @Override + public boolean saveOrUpdate(TdTrain entity) { + return false; + } + + @Override + public TdTrain getOne(Wrapper queryWrapper, boolean throwEx) { + return null; + } + + @Override + public Map getMap(Wrapper queryWrapper) { + return null; + } + + @Override + public V getObj(Wrapper queryWrapper, Function mapper) { + return null; + } + + @Override + public Class getEntityClass() { + return null; + } +} diff --git a/ruoyi-system/src/main/resources/mapper/system/TdTrainMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdTrainMapper.xml new file mode 100644 index 0000000..2fc062c --- /dev/null +++ b/ruoyi-system/src/main/resources/mapper/system/TdTrainMapper.xml @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + + + + insert into td_train + + 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, + + + #{USERNAME}, + #{deptName}, + #{trainType}, + #{trainSubject}, + #{trainAddress}, + #{trainDate}, + #{createStaffid}, + #{createDepartid}, + #{createDate}, + #{updateDepartid}, + #{updateStaffid}, + #{updateDate}, + #{AREAID}, + #{FRAMEWORK}, + #{trainName}, + #{trainState}, + #{trainTimeend}, + #{PART}, + #{TRAININFO}, + + + + + update td_train + + USERNAME = #{USERNAME}, + DEPT_NAME = #{deptName}, + TRAIN_TYPE = #{trainType}, + TRAIN_SUBJECT = #{trainSubject}, + TRAIN_ADDRESS = #{trainAddress}, + TRAIN_DATE = #{trainDate}, + CREATE_STAFFID = #{createStaffid}, + CREATE_DEPARTID = #{createDepartid}, + CREATE_DATE = #{createDate}, + UPDATE_DEPARTID = #{updateDepartid}, + UPDATE_STAFFID = #{updateStaffid}, + UPDATE_DATE = #{updateDate}, + AREAID = #{AREAID}, + FRAMEWORK = #{FRAMEWORK}, + TRAIN_NAME = #{trainName}, + TRAIN_STATE = #{trainState}, + TRAIN_TIMEEND = #{trainTimeend}, + PART = #{PART}, + TRAININFO = #{TRAININFO}, + + where ID = #{ID} + + + + delete from td_train where ID = #{ID} + + + + delete from td_train where ID in + + #{ID} + + + + \ No newline at end of file