md
This commit is contained in:
parent
294fee4fce
commit
8708a9ba7b
@ -323,7 +323,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="blMessage != null and blMessage != ''"> and bl_message like concat('%', #{blMessage}, '%')</if>
|
||||
<if test="blAcceptMessage != null and blAcceptMessage != ''"> and bl_accept_message like concat('%', #{blAcceptMessage}, '%')</if>
|
||||
<if test="blGenSubbill != null and blGenSubbill != ''"> and bl_gen_subbill like concat('%', #{blGenSubbill}, '%')</if>
|
||||
<if test="blSign != null and blSign != ''"> and bl_sign like concat('%', #{blSign}, '%')</if>
|
||||
<if test="blSign != null and blSign != ''"> and bl_sign=#{blSign}</if>
|
||||
<if test="signMan != null and signMan != ''"> and sign_man like concat('%', #{signMan}, '%')</if>
|
||||
<if test="signManCode != null and signManCode != ''"> and sign_man_code like concat('%', #{signManCode}, '%')</if>
|
||||
<if test="signSiteCode != null and signSiteCode != ''"> and sign_site_code like concat('%', #{signSiteCode}, '%')</if>
|
||||
|
||||
@ -665,12 +665,8 @@
|
||||
and a.send_site_code=#{sendSiteCode}
|
||||
</if>
|
||||
|
||||
<if test="blSign != null and blSign == 1">
|
||||
and a.bl_sign='1'
|
||||
</if>
|
||||
|
||||
<if test="blSign != null and blSign == 0">
|
||||
and a.bl_sign!='1'
|
||||
<if test="blSign != null and blSign !=''">
|
||||
and a.bl_sign=#{blSign}
|
||||
</if>
|
||||
|
||||
<if test="params.beginDate != null and params.beginDate != ''">
|
||||
@ -959,12 +955,8 @@
|
||||
and a.send_site_code=#{sendSiteCode}
|
||||
</if>
|
||||
|
||||
<if test="blSign != null and blSign == 1">
|
||||
and a.bl_sign='1'
|
||||
</if>
|
||||
|
||||
<if test="blSign != null and blSign == 0">
|
||||
and a.bl_sign!='1'
|
||||
<if test="blSign != null and blSign != ''">
|
||||
and a.bl_sign=#{blSign}
|
||||
</if>
|
||||
|
||||
<if test="params.beginDate != null and params.beginDate != ''">
|
||||
@ -1798,13 +1790,10 @@
|
||||
</if>
|
||||
|
||||
|
||||
<if test="blSign != null and blSign == 1">
|
||||
and a.bl_sign='1'
|
||||
<if test="blSign != null and blSign != ''">
|
||||
and a.bl_sign=#{blSign}
|
||||
</if>
|
||||
|
||||
<if test="blSign != null and blSign == 0">
|
||||
and a.bl_sign!='1'
|
||||
</if>
|
||||
|
||||
<if test="params.beginDate != null and params.beginDate != ''">
|
||||
and a.send_date <![CDATA[ >= ]]> #{params.beginDate}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user