Browse Source

添加平安接口调式修改逻辑处理以及脚本,jar提交
后期对前台再做修改·

hxl13994548489 2 years ago
parent
commit
cddf663de5
1 changed files with 24 additions and 0 deletions
  1. 24 0
      src/main/resources/mapper/modules/order/PinganApiLogMapper.xml

+ 24 - 0
src/main/resources/mapper/modules/order/PinganApiLogMapper.xml

@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper
+        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ydtech.modules.order.dao.PinganApiLogMapper">
+
+    <resultMap id="BaseResultMap" type="com.ydtech.modules.order.entity.api.pingan.log.PinganApiLog">
+            <id property="id" column="id" jdbcType="BIGINT"/>
+            <result property="orderno" column="orderno" jdbcType="VARCHAR"/>
+            <result property="agreeId" column="agree_id" jdbcType="VARCHAR"/>
+            <result property="subOrderNo" column="sub_order_no" jdbcType="INTEGER"/>
+            <result property="requestUrl" column="request_url" jdbcType="VARCHAR"/>
+            <result property="requestParam" column="request_param" jdbcType="VARCHAR"/>
+            <result property="requestType" column="request_type" jdbcType="VARCHAR"/>
+            <result property="responseBody" column="response_body" jdbcType="VARCHAR"/>
+            <result property="responseType" column="response_type" jdbcType="VARCHAR"/>
+    </resultMap>
+
+    <sql id="Base_Column_List">
+        id,orderno,agree_id,
+        sub_order_no,request_url,request_param,
+        request_type,response_body,response_type
+    </sql>
+</mapper>