diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/system/TdTrainController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/system/TdTrainController.java index 946dda1..7ec6d40 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/system/TdTrainController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/system/TdTrainController.java @@ -1,5 +1,6 @@ package com.ruoyi.web.controller.system.system; +import java.util.Date; import java.util.List; import com.ruoyi.common.core.domain.entity.SysUser; @@ -88,6 +89,8 @@ public class TdTrainController extends BaseController @ResponseBody public AjaxResult addSave(TdTrain tdTrain) { + tdTrain.setCreateStaffid(getLoginName()); + tdTrain.setCreateDate(new Date()); return toAjax(tdTrainService.insertTdTrain(tdTrain)); } diff --git a/ruoyi-admin/src/main/resources/templates/system/train/add.html b/ruoyi-admin/src/main/resources/templates/system/train/add.html index 585ea96..5b9cc68 100644 --- a/ruoyi-admin/src/main/resources/templates/system/train/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/train/add.html @@ -89,9 +89,9 @@
- +
- +
@@ -110,38 +110,17 @@ -
-
-
- -
- -
-
-
-
-
- -
-
- - -
-
-
-
-
-
-
+
- -
- + +
+
+
diff --git a/ruoyi-admin/src/main/resources/templates/system/train/edit.html b/ruoyi-admin/src/main/resources/templates/system/train/edit.html index 0203532..b5bb080 100644 --- a/ruoyi-admin/src/main/resources/templates/system/train/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/train/edit.html @@ -94,9 +94,13 @@
- +
- +
+ + + +
@@ -104,13 +108,9 @@
- +
-
- - - -
+
diff --git a/ruoyi-system/src/main/resources/mapper/system/TdTrainMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdTrainMapper.xml index 2fc062c..87b64fa 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdTrainMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdTrainMapper.xml @@ -54,6 +54,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" and PART = #{PART} and TRAININFO = #{TRAININFO} + order by CREATE_DATE desc