bug修复

This commit is contained in:
GUO 2024-05-03 22:03:02 +08:00
parent e311eed700
commit c7b5423106
2 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,9 @@
#{item}
</foreach>
</if>
<if test="param.sendSuccessStatus != null">
and a.send_success_status = #{param.sendSuccessStatus}
</if>
order by a.id desc
</select>
<select id="selectCarTypeCount" resultType="java.util.Map">

View File

@ -51,6 +51,9 @@
<if test="param.enterpriseId != null and param.enterpriseId != ''">
and a.enterprise_id = #{param.enterpriseId}
</if>
<if test="param.sendSuccessStatus != null">
and a.send_success_status = #{param.sendSuccessStatus}
</if>
<if test="param.enterpriseIds != null and param.enterpriseIds.size() != 0">
and a.enterprise_id in
<foreach collection="param.enterpriseIds" index="index" item="item" open="(" separator="," close=")">