|
@@ -34,7 +34,7 @@
|
|
|
customer_name = #{query.customerName,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
<if test="query.carNum != null and query.carNum != ''">
|
|
|
- and car_num = #{query.carNum}
|
|
|
+ and BINARY car_num = #{query.carNum}
|
|
|
</if>
|
|
|
<if test="query.companyName != null and query.companyName != ''">
|
|
|
and company_name LIKE CONCAT('%',#{query.companyName},'%')
|
|
@@ -58,6 +58,7 @@
|
|
|
)
|
|
|
</if>
|
|
|
</where>
|
|
|
+ ORDER BY succ_time||fail_time DESC
|
|
|
</select>
|
|
|
<select id="selectByCustName" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
select
|
|
@@ -69,19 +70,19 @@
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from t_customer_carRec
|
|
|
- where car_num = #{customerName,jdbcType=VARCHAR} and bussiness_type=2
|
|
|
+ where BINARY car_num = #{carNum,jdbcType=VARCHAR} and bussiness_type=2
|
|
|
</select>
|
|
|
<select id="selectBySelfCarNum" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from t_customer_carRec
|
|
|
- where car_num = #{customerName,jdbcType=VARCHAR} and bussiness_type=0 and rec_status = 1
|
|
|
+ where BINARY car_num = #{carNum,jdbcType=VARCHAR} and bussiness_type=0 and rec_status = 1
|
|
|
</select>
|
|
|
<select id="selectAllEtcBySelfCarNum" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from t_customer_carRec
|
|
|
- where car_num = #{customerName,jdbcType=VARCHAR} and bussiness_type=0
|
|
|
+ where BINARY car_num = #{carNum,jdbcType=VARCHAR} and bussiness_type=0
|
|
|
</select>
|
|
|
<select id="selectByETC" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
select
|
|
@@ -194,7 +195,7 @@
|
|
|
company_name = #{companyName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="carNum != null">
|
|
|
- car_num = #{carNum,jdbcType=VARCHAR},
|
|
|
+ car_num = #{carNum,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="carColor != null">
|
|
|
car_color = #{carColor,jdbcType=VARCHAR},
|
|
@@ -221,7 +222,7 @@
|
|
|
inter_type = #{interType,jdbcType=INTEGER}
|
|
|
</if>
|
|
|
</set>
|
|
|
- where car_num = #{carNum,jdbcType=VARCHAR} and bussiness_type=2
|
|
|
+ where BINARY car_num = #{carNum,jdbcType=VARCHAR} and bussiness_type=2
|
|
|
</update>
|
|
|
<update id="updateETCByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
|
|
|
update t_customer_carRec
|
|
@@ -230,7 +231,7 @@
|
|
|
company_name = #{companyName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="carNum != null">
|
|
|
- car_num = #{carNum,jdbcType=VARCHAR},
|
|
|
+ BINARY car_num = #{carNum,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="carColor != null">
|
|
|
car_color = #{carColor,jdbcType=VARCHAR},
|
|
@@ -273,7 +274,7 @@
|
|
|
rec_status = #{recStatus,jdbcType=INTEGER},
|
|
|
fail_reason = #{failReason,jdbcType=VARCHAR},
|
|
|
inter_type = #{interType,jdbcType=INTEGER}
|
|
|
- where car_num = #{carNum,jdbcType=VARCHAR} and bussiness_type=2
|
|
|
+ where BINARY car_num = #{carNum,jdbcType=VARCHAR} and bussiness_type=2
|
|
|
</update>
|
|
|
|
|
|
<update id="updateETCByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
|