|
|
@ -86,7 +86,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
identifying_people,first_add_time,update_info_time,audit_status,use_status, create_time from |
|
|
|
sys_customer |
|
|
|
<where> |
|
|
|
and use_status = '1' and use_status = '1' |
|
|
|
and audit_status = '1' and use_status = '1' |
|
|
|
</where> |
|
|
|
</select> |
|
|
|
|
|
|
@ -127,7 +127,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
select enterprise_code as customerId,enterprise_name as customerName from |
|
|
|
sys_customer |
|
|
|
<where> |
|
|
|
and use_status = '1' and use_status = '1' |
|
|
|
and audit_status = '1' and use_status = '1' |
|
|
|
</where> |
|
|
|
</select> |
|
|
|
|
|
|
@ -360,7 +360,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
|
|
|
|
<select id="searchCustomersByPrefix" parameterType="String" resultMap="SysCustomerResult"> |
|
|
|
<include refid="selectSysCustomerVo"/> |
|
|
|
where use_status = '1' and use_status = '1' |
|
|
|
where audit_status = '1' and use_status = '1' |
|
|
|
and enterprise_code like concat(#{prefix}, '%') escape '\\' |
|
|
|
</select> |
|
|
|
|
|
|
|