puzhibing
2023-08-04 624c9eec90d59297800f03276f8518daa1bd9f94
cloud-server-other/src/main/resources/mapper/HonorRulesMapper.xml
@@ -3,4 +3,20 @@
<mapper namespace="com.dsh.other.mapper.HonorRulesMapper">
    <select id="querylistOfIds" resultType="com.dsh.other.entity.HonorRules">
        SELECT
        id,
        type,
        `level`,
        `condition`
        FROM
        t_honor_rules
        where 1=1
        <if test="honorIds.size > 0">
            and `id` in
        <foreach collection="honorIds" index="index" item="item" open="(" separator="," close=")">
            #{item}
        </foreach>
        </if>
    </select>
</mapper>