From 548bb40cfbc31c2784e3d2149158617dbdd427c6 Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Tue, 25 Jun 2024 09:41:39 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=B6=89=E5=AF=86=E9=97=AE=E9=A2=98bug?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/exam/TdQuestionController.java | 3 +++ .../resources/templates/system/question/add.html | 15 --------------- .../resources/templates/system/question/edit.html | 15 --------------- .../resources/mapper/system/TdQuestionMapper.xml | 1 + 4 files changed, 4 insertions(+), 30 deletions(-) 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