jinlin
2026-02-27 884d1457cebbda20ad2539550062c408a58709be
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>