|
@@ -41,6 +41,20 @@
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from t_customer_rec
|
|
|
+ <where>
|
|
|
+ <if test="customerRec.customerName != null and customerRec.customerName != ''">
|
|
|
+ AND customerName LIKE CONCAT('%',#{customerRec.customerName},'%')
|
|
|
+ </if>
|
|
|
+ <if test="customerRec.companyLeaderPhone != null and customerRec.companyLeaderPhone != ''">
|
|
|
+ and companyLeaderPhone = #{customerRec.companyLeaderPhone}
|
|
|
+ </if>
|
|
|
+ <if test="customerRec.companyReferencenum != null and customerRec.companyReferencenum != ''">
|
|
|
+ and companyReferencenum = #{customerRec.companyReferencenum}
|
|
|
+ </if>
|
|
|
+ <if test="customerRec.companyName != null and customerRec.companyName != ''">
|
|
|
+ and companyName = #{customerRec.companyName}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
</select>
|
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
|
|
select
|