|
@@ -52,7 +52,7 @@
|
|
|
and company_referenceNum = BINARY #{customerRec.companyReferencenum}
|
|
|
</if>
|
|
|
<if test="customerRec.companyName != null and customerRec.companyName != ''">
|
|
|
- and company_name BINARY LIKE CONCAT('%',#{customerRec.companyName},'%')
|
|
|
+ and company_name LIKE BINARY CONCAT('%',#{customerRec.companyName},'%')
|
|
|
</if>
|
|
|
<if test="customerRec.companyBelongName != null and customerRec.companyBelongName != ''">
|
|
|
and company_belong_name LIKE CONCAT('%',#{customerRec.companyBelongName},'%')
|
|
@@ -72,10 +72,10 @@
|
|
|
AND customerName = BINARY #{customerRec.customerName}
|
|
|
</if>
|
|
|
<if test="customerRec.companyName != null and customerRec.companyName != ''">
|
|
|
- and company_name BINARY LIKE CONCAT('%',#{customerRec.companyName},'%')
|
|
|
+ and company_name LIKE BINARY CONCAT('%',#{customerRec.companyName},'%')
|
|
|
</if>
|
|
|
<if test="customerRec.companyBelongName != null and customerRec.companyBelongName != ''">
|
|
|
- and company_belong_name BINARY LIKE CONCAT('%',#{customerRec.companyBelongName},'%')
|
|
|
+ and company_belong_name LIKE BINARY CONCAT('%',#{customerRec.companyBelongName},'%')
|
|
|
</if>
|
|
|
</where>
|
|
|
ORDER by customerName
|
|
@@ -110,20 +110,20 @@
|
|
|
from t_customer_rec
|
|
|
where customerName = BINARY #{customerRec.customerName,jdbcType=VARCHAR}
|
|
|
<if test="customerRec.companyName != null and customerRec.companyName != ''">
|
|
|
- and company_name BINARY LIKE CONCAT('%',#{customerRec.companyName},'%')
|
|
|
+ and company_name LIKE BINARY CONCAT('%',#{customerRec.companyName},'%')
|
|
|
</if>
|
|
|
</select>
|
|
|
<select id="selectByCustomerNameAndCompany" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from t_customer_rec
|
|
|
- where customerName = BINARY #{customerName,jdbcType=VARCHAR} AND BINARY company_name = #{companyName,jdbcType=VARCHAR}
|
|
|
+ where customerName = BINARY #{customerName,jdbcType=VARCHAR} AND company_name = BINARY #{companyName,jdbcType=VARCHAR}
|
|
|
</select>
|
|
|
<select id="selectByCustomerNameAndCompanyReference" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from t_customer_rec
|
|
|
- where customerName = BINARY #{customerName,jdbcType=VARCHAR} AND BINARY company_referenceNum = #{companyReferencenum,jdbcType=VARCHAR} and rec_status =1
|
|
|
+ where customerName = BINARY #{customerName,jdbcType=VARCHAR} AND company_referenceNum = BINARY #{companyReferencenum,jdbcType=VARCHAR} and rec_status =1
|
|
|
</select>
|
|
|
<select id="selectByCompanyReference" resultMap="BaseResultMap" parameterType="java.lang.String" >
|
|
|
select
|