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>