From 2485a4875adda2ffd0e8cfccdf749f15fe8d48cb Mon Sep 17 00:00:00 2001 From: huliguo <2023611923@qq.com> Date: 星期四, 17 七月 2025 08:47:48 +0800 Subject: [PATCH] bug修改 --- ruoyi-system/src/main/resources/mapper/system/QuestionMapper.xml | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/QuestionMapper.xml b/ruoyi-system/src/main/resources/mapper/system/QuestionMapper.xml index a403bb8..b0b19cd 100644 --- a/ruoyi-system/src/main/resources/mapper/system/QuestionMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/QuestionMapper.xml @@ -4,12 +4,12 @@ <select id="getQuestionPage" resultType="com.ruoyi.system.pojo.vo.QuestionPageVO"> - select id,name ,order_num + select id,title ,order_num from tb_question where - del_flg=0 - <if test="null != name and '' != name"> - and name like concat('%',#{name},'%') + del_flag=0 + <if test="null != title and '' != title"> + and title like concat('%',#{title},'%') </if> </select> -- Gitblit v1.7.1