From 69a0e318bb6ce1efec4d67d8751b7574b37ba49e Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期二, 23 九月 2025 18:07:13 +0800 Subject: [PATCH] AI对接 --- ruoyi-system/src/main/resources/mapper/system/TSysProductIntroductionMapper.xml | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TSysProductIntroductionMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TSysProductIntroductionMapper.xml index fb4c874..08d0756 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TSysProductIntroductionMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TSysProductIntroductionMapper.xml @@ -45,5 +45,24 @@ </where> ORDER BY create_time DESC </select> + <select id="pageListApp" resultType="com.ruoyi.system.model.TSysProductIntroduction"> + SELECT + <include refid="Base_Column_List"/> + FROM t_sys_product_introduction + <where> + <if test="query.productName != null and query.productName != ''"> + AND product_name LIKE concat('%',#{query.productName},'%') + </if> + <if test="query.showType != null"> + AND show_type = #{query.showType} + </if> + <if test="query.status != null"> + AND status = #{query.status} + </if> + AND show_type in (1,3) + AND disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()} + </where> + ORDER BY create_time DESC + </select> </mapper> -- Gitblit v1.7.1