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