修改逻辑 审核了就能看到。

This commit is contained in:
yyhouc 2023-06-07 15:35:15 +08:00
parent 102ef245fd
commit 65419a2ca9
1 changed files with 2 additions and 9 deletions

View File

@ -49,15 +49,6 @@
<if test="entityData.disasterId != null and entityData.disasterId != ''"> <if test="entityData.disasterId != null and entityData.disasterId != ''">
ed.disaster_id = #{entityData.disasterId} ed.disaster_id = #{entityData.disasterId}
</if> </if>
<if test="entityData.status != null and entityData.status != ''">
and ed.status = #{entityData.status}
</if>
<if test="entityData.visualFlag != null">
and ed.visual_flag = #{entityData.visualFlag}
</if>
<if test="entityData.isPublish != null">
and ed.is_publish = #{entityData.isPublish}
</if>
<if test="entityData.type != null and entityData.type != ''"> <if test="entityData.type != null and entityData.type != ''">
and ed.type = #{entityData.type} and ed.type = #{entityData.type}
</if> </if>
@ -67,6 +58,8 @@
<if test="entityData.title != null and entityData.title != ''"> <if test="entityData.title != null and entityData.title != ''">
and ed.title = concat('%',#{entityData.title},'%') and ed.title = concat('%',#{entityData.title},'%')
</if> </if>
AND ed.is_deleted = 0
and ed.status = 1
</where> </where>
ORDER BY ed.upload_time DESC ORDER BY ed.upload_time DESC
</select> </select>