Commit 05dcc219 authored by 李灿灿's avatar 李灿灿

20221108 险种列表 名称模糊搜索

parent 56cd6cd6
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
and b.COMPANY_NAME = #{insuranceType.insuranceCompanyName} and b.COMPANY_NAME = #{insuranceType.insuranceCompanyName}
</if> </if>
<if test="insuranceType.name != null and insuranceType.name.trim() != ''"> <if test="insuranceType.name != null and insuranceType.name.trim() != ''">
and a.NAME = #{insuranceType.name} and a.NAME like concat('%',replace(replace(#{insuranceType.name},'_','\_'),'%','\%'),'%')
</if> </if>
ORDER BY a.CREATE_TIME DESC ORDER BY a.CREATE_TIME DESC
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment