|
@@ -104,6 +104,15 @@
|
|
|
from t_customer_rec
|
|
|
where customerName = #{customerName,jdbcType=VARCHAR}
|
|
|
</select>
|
|
|
+ <select id="selectByCustomerNameCpAll" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from t_customer_rec
|
|
|
+ where customerName = #{customerRec.customerName,jdbcType=VARCHAR}
|
|
|
+ <if test="customerRec.companyName != null and customerRec.companyName != ''">
|
|
|
+ and company_name LIKE CONCAT('%',#{customerRec.companyName},'%')
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
<select id="selectByCustomerNameAndCompany" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|