|
@@ -14,10 +14,11 @@
|
|
|
<result column="rec_status" jdbcType="INTEGER" property="recStatus" />
|
|
|
<result column="bussiness_type" jdbcType="INTEGER" property="businessType" />
|
|
|
<result column="fail_reason" jdbcType="VARCHAR" property="failReason" />
|
|
|
+ <result column="inter_type" jdbcType="VARCHAR" property="interType" />
|
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List">
|
|
|
customer_name,companyNum,company_name, car_num, car_color, cust_phone, etc_num, succ_time,
|
|
|
- fail_time, rec_status,bussiness_type, fail_reason
|
|
|
+ fail_time, rec_status,bussiness_type, fail_reason,inter_type
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectAllByPage" resultMap="BaseResultMap">
|
|
@@ -74,7 +75,7 @@
|
|
|
</select>
|
|
|
<update id="updateWaitETCStatus" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
|
|
|
update t_customer_carRec set rec_status = #{recStatus,jdbcType=INTEGER} ,succ_time = #{succTime,jdbcType=VARCHAR}, fail_time = #{failTime,jdbcType=VARCHAR}
|
|
|
- , fail_reason = #{failReason,jdbcType=VARCHAR}
|
|
|
+ , fail_reason = #{failReason,jdbcType=VARCHAR}, inter_type = #{interType,jdbcType=VARCHAR}
|
|
|
where companyNum = #{companyNum,jdbcType=VARCHAR} and cust_phone = #{custPhone,jdbcType=VARCHAR} AND bussiness_type=0 and rec_status = 3
|
|
|
</update>
|
|
|
<delete id="selectByCustomerName" parameterType="java.lang.String">
|
|
@@ -85,11 +86,11 @@
|
|
|
insert into t_customer_carRec (customer_name,companyNum, company_name, car_num,
|
|
|
car_color, cust_phone, etc_num,
|
|
|
succ_time, fail_time, rec_status,bussiness_type,
|
|
|
- fail_reason)
|
|
|
+ fail_reason,inter_type)
|
|
|
values (#{customerName,jdbcType=VARCHAR},#{companyNum,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR}, #{carNum,jdbcType=VARCHAR},
|
|
|
#{carColor,jdbcType=VARCHAR}, #{custPhone,jdbcType=VARCHAR}, #{etcNum,jdbcType=VARCHAR},
|
|
|
#{succTime,jdbcType=VARCHAR}, #{failTime,jdbcType=VARCHAR}, #{recStatus,jdbcType=INTEGER},#{businessType,jdbcType=INTEGER},
|
|
|
- #{failReason,jdbcType=VARCHAR})
|
|
|
+ #{failReason,jdbcType=VARCHAR}),#{interType,jdbcType=INTEGER}
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
|
|
|
insert into t_customer_carRec
|
|
@@ -127,6 +128,9 @@
|
|
|
<if test="failReason != null">
|
|
|
fail_reason,
|
|
|
</if>
|
|
|
+ <if test="interType != null">
|
|
|
+ inter_type = #{interType,jdbcType=INTEGER}
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="customerName != null">
|
|
@@ -162,6 +166,9 @@
|
|
|
<if test="failReason != null">
|
|
|
#{failReason,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="interType != null">
|
|
|
+ inter_type = #{interType,jdbcType=INTEGER}
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
|
|
@@ -194,6 +201,9 @@
|
|
|
<if test="failReason != null">
|
|
|
fail_reason = #{failReason,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="interType != null">
|
|
|
+ inter_type = #{interType,jdbcType=INTEGER}
|
|
|
+ </if>
|
|
|
</set>
|
|
|
where car_num = #{carNum,jdbcType=VARCHAR} and bussiness_type=2
|
|
|
</update>
|
|
@@ -227,6 +237,9 @@
|
|
|
<if test="failReason != null">
|
|
|
fail_reason = #{failReason,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="interType != null">
|
|
|
+ inter_type = #{interType,jdbcType=INTEGER}
|
|
|
+ </if>
|
|
|
</set>
|
|
|
where etc_num = #{etcNum,jdbcType=VARCHAR} and bussiness_type=0
|
|
|
</update>
|
|
@@ -242,7 +255,8 @@
|
|
|
succ_time = #{succTime,jdbcType=TIMESTAMP},
|
|
|
fail_time = #{failTime,jdbcType=TIMESTAMP},
|
|
|
rec_status = #{recStatus,jdbcType=INTEGER},
|
|
|
- fail_reason = #{failReason,jdbcType=VARCHAR}
|
|
|
+ fail_reason = #{failReason,jdbcType=VARCHAR},
|
|
|
+ inter_type = #{interType,jdbcType=INTEGER}
|
|
|
where car_num = #{carNum,jdbcType=VARCHAR} and bussiness_type=2
|
|
|
</update>
|
|
|
|
|
@@ -258,7 +272,8 @@
|
|
|
succ_time = #{succTime,jdbcType=TIMESTAMP},
|
|
|
fail_time = #{failTime,jdbcType=TIMESTAMP},
|
|
|
rec_status = #{recStatus,jdbcType=INTEGER},
|
|
|
- fail_reason = #{failReason,jdbcType=VARCHAR}
|
|
|
+ fail_reason = #{failReason,jdbcType=VARCHAR},
|
|
|
+ inter_type = #{interType,jdbcType=INTEGER}
|
|
|
where etc_num = #{etcNum,jdbcType=VARCHAR} and bussiness_type=0
|
|
|
</update>
|
|
|
</mapper>
|