Commit ecebddfc authored by litengwei's avatar litengwei

bug 7416

parent cc163d7a
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
cb_sign sign cb_sign sign
<where> <where>
<if test="dto.name!=null and dto.name!=''"> <if test="dto.name!=null and dto.name!=''">
and sign.`name` like CONCAT(#{dto.name},'%') and sign.`name` like CONCAT('%',#{dto.name},'%')
</if> </if>
<if test="dto.type!=null and dto.type!=''"> <if test="dto.type!=null and dto.type!=''">
and sign.type=#{dto.type} and sign.type=#{dto.type}
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
and sign.sign_time >= #{dto.signTimeBIGGER} and sign.sign_time >= #{dto.signTimeBIGGER}
</if> </if>
<if test="dto.bizOrgName!=null and dto.bizOrgName!=''"> <if test="dto.bizOrgName!=null and dto.bizOrgName!=''">
and sign.biz_org_Name like CONCAT(#{dto.bizOrgName},'%') and sign.biz_org_Name like CONCAT('%',#{dto.bizOrgName},'%')
</if> </if>
<if test="dto.signTimeLESS!=null and dto.signTimeLESS!=''"> <if test="dto.signTimeLESS!=null and dto.signTimeLESS!=''">
and #{dto.signTimeLESS} >= sign.sign_time and #{dto.signTimeLESS} >= sign.sign_time
......
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