From 884d1457cebbda20ad2539550062c408a58709be Mon Sep 17 00:00:00 2001
From: jinlin <721705285@qq.com>
Date: 星期五, 27 二月 2026 16:19:35 +0800
Subject: [PATCH] 修改
---
modules/mainPart/src/main/resources/mapper/ftCategory/FtCategoryDao.xml | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/modules/mainPart/src/main/resources/mapper/ftCategory/FtCategoryDao.xml b/modules/mainPart/src/main/resources/mapper/ftCategory/FtCategoryDao.xml
index a58c4c9..3272402 100644
--- a/modules/mainPart/src/main/resources/mapper/ftCategory/FtCategoryDao.xml
+++ b/modules/mainPart/src/main/resources/mapper/ftCategory/FtCategoryDao.xml
@@ -17,4 +17,18 @@
</if>
</select>
+ <select id="getList2" resultType="com.zt.life.modules.mainPart.ftCategory.model.FtCategory">
+ select a.*
+ from ft_category a
+ <where>
+ a.is_delete = 0
+ <if test="whereSql!=null">
+ and ${whereSql}
+ </if>
+ </where>
+ <if test="orderBySql!=null">
+ ORDER BY ${orderBySql}
+ </if>
+ </select>
+
</mapper>
--
Gitblit v1.9.1