Ver código fonte

客户下游接口开发——20210927

MSY 3 anos atrás
pai
commit
6c72a233a7

+ 1 - 0
src/main/java/com/jkcredit/invoice/credit/custInterface/SelfCarInterServiceImpl.java

@@ -327,6 +327,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
             etcValidVo.setCompanyName(customerRec1.getCompanyName());
             etcValidVo.setValidCode(validCode);
             etcValidVo.setMobile(mobile);
+            etcValidVo.setInterType(0);//接口
 
             RespR rs = selfCarService.customerEtcRecValid(etcValidVo);
             long costtimeend = System.currentTimeMillis();

+ 10 - 0
src/main/java/com/jkcredit/invoice/model/entity/customer/CustomerCarRec.java

@@ -25,6 +25,8 @@ public class CustomerCarRec {
      */
     private Integer recStatus = 0;
 
+    private Integer interType =1; //0-接口 1-平台
+
     private String failReason;
 
     private String validateCode;
@@ -140,4 +142,12 @@ public class CustomerCarRec {
     public void setServiceOperation(Integer serviceOperation) {
         this.serviceOperation = serviceOperation;
     }
+
+    public Integer getInterType() {
+        return interType;
+    }
+
+    public void setInterType(Integer interType) {
+        this.interType = interType;
+    }
 }

+ 1 - 1
src/main/java/com/jkcredit/invoice/model/entity/customer/CustomerRec.java

@@ -78,7 +78,7 @@ public class CustomerRec {
      */
     private Integer recStatus;
 
-    private Integer interType =1; //0-接口 1-平台 3.手工录入
+    private Integer interType =1; //0-接口 1-平台
 
     /**
      * 业务类型 0 -自有车 1-外协车 2-无车

+ 10 - 0
src/main/java/com/jkcredit/invoice/model/entity/waybill/SelfCarTrade.java

@@ -74,6 +74,16 @@ public class SelfCarTrade {
     private String exceptionFlag;
 
 
+    private Integer interType =1; //0-接口 1-平台
+
+    public Integer getInterType() {
+        return interType;
+    }
+
+    public void setInterType(Integer interType) {
+        this.interType = interType;
+    }
+
     public Long getId() {
         return id;
     }

+ 1 - 0
src/main/java/com/jkcredit/invoice/service/lowerService/impl/SelfCarServiceLImpl.java

@@ -461,6 +461,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
                 customerCarRec.setRecStatus(CommonConstants.REC_STATUS_SUC);
                 customerCarRec.setSuccTime(DateUtil.getCurrentDateStr());
                 customerCarRec.setCustPhone(etcValidVo.getMobile());
+                customerCarRec.setInterType(etcValidVo.getInterType());
                 updateETCRec(customerCarRec);
             });
             return new RespR(false,"校验成功");

+ 12 - 0
src/main/java/com/jkcredit/invoice/service/lowerService/vo/EtcValidVo.java

@@ -24,6 +24,10 @@ public class EtcValidVo {
      */
     private String validCode;
 
+
+    private Integer interType =1; //0-接口 1-平台
+
+
     public String getMobile() {
         return mobile;
     }
@@ -55,4 +59,12 @@ public class EtcValidVo {
     public void setValidCode(String validCode) {
         this.validCode = validCode;
     }
+
+    public Integer getInterType() {
+        return interType;
+    }
+
+    public void setInterType(Integer interType) {
+        this.interType = interType;
+    }
 }

+ 21 - 6
src/main/resources/mapper/customer/CustomerCarRecMapper.xml

@@ -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>