Commit 8d224df6 authored by litengwei's avatar litengwei

任务 8862 8861 8863

parent 3b9106aa
...@@ -14,11 +14,12 @@ ...@@ -14,11 +14,12 @@
sign.`biz_org_code` bizOrgCode, sign.`biz_org_code` bizOrgCode,
sign.`biz_org_name` bizOrgName, sign.`biz_org_name` bizOrgName,
sign.`sign_time` signTime sign.`sign_time` signTime
sign.remarks
FROM FROM
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}
...@@ -26,6 +27,9 @@ ...@@ -26,6 +27,9 @@
<if test="dto.signTimeBIGGER!=null and dto.signTimeBIGGER!=''"> <if test="dto.signTimeBIGGER!=null and dto.signTimeBIGGER!=''">
and sign.sign_time >= #{dto.signTimeBIGGER} and sign.sign_time >= #{dto.signTimeBIGGER}
</if> </if>
<if test="dto.bizOrgName!=null and dto.bizOrgName!=''">
and sign.biz_org_Name like CONCAT(#{dto.bizOrgName},'%')
</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
</if> </if>
......
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