fix: 投资系统,茅台预约,自测问题修复。

This commit is contained in:
tianyongbao
2024-12-07 23:54:15 +08:00
parent 0c1f7d217d
commit 406484b768
14 changed files with 33 additions and 105 deletions

View File

@@ -21,9 +21,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<include refid="selectIItemVo"/>
<where>
a.del_flag='0'
<if test="itemCode != null and itemCode != ''"> and a.item_code = #{itemCode}</if>
<if test="title != null and title != ''"> and a.title = #{title}</if>
<if test="content != null and content != ''"> and a.content = #{content}</if>
<if test="itemCode != null and itemCode != ''"> and a.item_code like '%'|| #{itemCode}||'%'</if>
<if test="title != null and title != ''"> and a.title like '%'|| #{title}||'%'</if>
<if test="content != null and content != ''"> and a.content like '%'|| #{content}||'%'</if>
</where>
order by a.create_time desc
</select>