md
This commit is contained in:
parent
a055e6929e
commit
55c7645249
@ -118,14 +118,14 @@
|
||||
<if test="contact != null and contact != ''"> and contact like concat('%', #{contact}, '%')</if>
|
||||
<if test="phone != null and phone != ''"> and phone like concat('%', #{phone}, '%')</if>
|
||||
<if test="mobile != null and mobile != ''"> and mobile like concat('%', #{mobile}, '%')</if>
|
||||
<if test="customerType != null and customerType != ''"> and customer_type like concat('%', #{customerType}, '%')</if>
|
||||
<if test="settledType != null and settledType != ''"> and settled_type like concat('%', #{settledType}, '%')</if>
|
||||
<if test="userType != null and userType != ''"> and user_type like concat('%', #{userType}, '%')</if>
|
||||
<if test="customerType != null and customerType != ''"> and customer_type=#{customerType}</if>
|
||||
<if test="settledType != null and settledType != ''"> and settled_type=#{settledType}</if>
|
||||
<if test="userType != null and userType != ''"> and user_type=#{userType}</if>
|
||||
<if test="company != null and company != ''"> and company like concat('%', #{company}, '%')</if>
|
||||
<if test="licNo != null and licNo != ''"> and lic_no like concat('%', #{licNo}, '%')</if>
|
||||
<if test="deptId != null and deptId != ''"> and dept_id like concat('%', #{deptId}, '%')</if>
|
||||
<if test="avatar != null and avatar != ''"> and avatar like concat('%', #{avatar}, '%')</if>
|
||||
<if test="sex != null and sex != ''"> and sex like concat('%', #{sex}, '%')</if>
|
||||
<if test="sex != null and sex != ''"> and sex= #{sex}</if>
|
||||
<if test="invitationInfo != null and invitationInfo != ''"> and invitation_info like concat('%', #{invitationInfo}, '%')</if>
|
||||
<if test="loginIp != null and loginIp != ''"> and login_ip like concat('%', #{loginIp}, '%')</if>
|
||||
<if test="loginDate != null "> and login_date like concat('%', #{loginDate}, '%')</if>
|
||||
@ -134,14 +134,13 @@
|
||||
<if test="openid != null and openid != ''"> and openid like concat('%', #{openid}, '%')</if>
|
||||
<if test="monthlyPayCode != null and monthlyPayCode != ''"> and monthly_pay_code like concat('%', #{monthlyPayCode}, '%')</if>
|
||||
<if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
|
||||
<if test="password != null and password != ''"> and password like concat('%', #{password}, '%')</if>
|
||||
<if test="bizSite != null and bizSite != ''"> and biz_site like concat('%', #{bizSite}, '%')</if>
|
||||
<if test="bizSiteName != null and bizSiteName != ''"> and biz_site_name like concat('%', #{bizSiteName}, '%')</if>
|
||||
<if test="country != null and country != ''"> and country like concat('%', #{country}, '%')</if>
|
||||
<if test="province != null and province != ''"> and province like concat('%', #{province}, '%')</if>
|
||||
<if test="city != null and city != ''"> and city like concat('%', #{city}, '%')</if>
|
||||
<if test="county != null and county != ''"> and county like concat('%', #{county}, '%')</if>
|
||||
<if test="town != null and town != ''"> and town like concat('%', #{town}, '%')</if>
|
||||
<if test="country != null and country != ''"> and country=#{country}</if>
|
||||
<if test="province != null and province != ''"> and province=#{province}</if>
|
||||
<if test="city != null and city != ''"> and city=#{city}</if>
|
||||
<if test="county != null and county != ''"> and county=#{county}</if>
|
||||
<if test="town != null and town != ''"> and town=#{town}</if>
|
||||
<if test="address != null and address != ''"> and address like concat('%', #{address}, '%')</if>
|
||||
<if test="email != null and email != ''"> and email like concat('%', #{email}, '%')</if>
|
||||
<if test="postCode != null and postCode != ''"> and post_code like concat('%', #{postCode}, '%')</if>
|
||||
@ -150,11 +149,11 @@
|
||||
<if test="payee != null and payee != ''"> and payee like concat('%', #{payee}, '%')</if>
|
||||
<if test="salesmen != null and salesmen != ''"> and salesmen like concat('%', #{salesmen}, '%')</if>
|
||||
<if test="dataFrom != null and dataFrom != ''"> and data_from like concat('%', #{dataFrom}, '%')</if>
|
||||
<if test="blOpenOms != null and blOpenOms != ''"> and bl_open_oms like concat('%', #{blOpenOms}, '%')</if>
|
||||
<if test="blSms != null and blSms != ''"> and bl_sms like concat('%', #{blSms}, '%')</if>
|
||||
<if test="blOpenOms != null and blOpenOms != ''"> and bl_open_oms=#{blOpenOms}</if>
|
||||
<if test="blSms != null and blSms != ''"> and bl_sms=#{blSms}</if>
|
||||
<if test="opEmpCode != null and opEmpCode != ''"> and op_emp_code like concat('%', #{opEmpCode}, '%')</if>
|
||||
<if test="firstSigningDay != null and firstSigningDay != ''"> and first_signing_day like concat('%', #{firstSigningDay}, '%')</if>
|
||||
<if test="status != null and status != ''"> and status like concat('%', #{status}, '%')</if>
|
||||
<if test="status != null and status != ''"> and status=#{status}</if>
|
||||
<if test="orderNum != null and orderNum != ''"> and order_num like concat('%', #{orderNum}, '%')</if>
|
||||
<if test="remark != null and remark != ''"> and remark like concat('%', #{remark}, '%')</if>
|
||||
<if test="delFlag != null and delFlag != ''"> and del_flag like concat('%', #{delFlag}, '%')</if>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user