diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/exam/TdQuestionController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/exam/TdQuestionController.java index 721b3e0..7b43441 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/exam/TdQuestionController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/exam/TdQuestionController.java @@ -1,5 +1,6 @@ package com.ruoyi.web.controller.system.exam; +import java.util.Date; import java.util.List; import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; @@ -87,6 +88,8 @@ public class TdQuestionController extends BaseController @ResponseBody public AjaxResult addSave(TdQuestion tdQuestion) { + tdQuestion.setCREATEPERSON(getLoginName()); + tdQuestion.setCREATEDATE(new Date()); return toAjax(tdQuestionService.insertTdQuestion(tdQuestion)); } diff --git a/ruoyi-admin/src/main/resources/templates/system/question/add.html b/ruoyi-admin/src/main/resources/templates/system/question/add.html index 2d3075d..6a45af5 100644 --- a/ruoyi-admin/src/main/resources/templates/system/question/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/question/add.html @@ -52,21 +52,6 @@ -
- -
- -
-
-
- -
-
- - -
-
-
diff --git a/ruoyi-admin/src/main/resources/templates/system/question/edit.html b/ruoyi-admin/src/main/resources/templates/system/question/edit.html index 4a300a2..77ba6c9 100644 --- a/ruoyi-admin/src/main/resources/templates/system/question/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/question/edit.html @@ -52,21 +52,6 @@ -
- -
- -
-
-
- -
-
- - -
-
-
diff --git a/ruoyi-system/src/main/resources/mapper/system/TdQuestionMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdQuestionMapper.xml index 36982a6..6dc763e 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdQuestionMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdQuestionMapper.xml @@ -34,6 +34,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" and CREATEPERSON = #{CREATEPERSON} and CREATEDATE = #{CREATEDATE} + order by CREATEDATE desc