|
@@ -0,0 +1,38 @@
|
|
|
+<?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.hrsk.cloud.eg.infrastructure.repository.database.mapper.XdOrderInfoMapper">
|
|
|
+
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
+ <resultMap id="BaseResultMap" type="com.hrsk.cloud.eg.infrastructure.repository.database.entity.XdOrderInfo">
|
|
|
+ <id column="id" property="id" />
|
|
|
+ <result column="apply_id" property="applyId" />
|
|
|
+ <result column="user_id" property="userId" jdbcType="BIGINT"/>
|
|
|
+ <result column="product_id" property="productId" />
|
|
|
+ <result column="status" property="status" />
|
|
|
+ <result column="o_status" property="oStatus" />
|
|
|
+ <result column="order_type" property="orderType" />
|
|
|
+ <result column="create_time" property="createTime" />
|
|
|
+ <result column="create_by" property="createBy" />
|
|
|
+ <result column="update_time" property="updateTime" />
|
|
|
+ <result column="update_by" property="updateBy" />
|
|
|
+ <result column="reason" property="reason" />
|
|
|
+ <result column="borrow_money" property="borrowMoney" />
|
|
|
+ <result column="borrow_limit" property="borrowLimit" />
|
|
|
+ <result column="borrow_purpose" property="borrowPurpose" />
|
|
|
+ <!--<result column="is_grab" property="isGrab" />-->
|
|
|
+ <!--<result column="is_apply" property="isApply" />-->
|
|
|
+ <result column="user_mobile" property="userMobile" />
|
|
|
+ <result column="real_name" property="realName" />
|
|
|
+ <result column="channel_name" property="channelName" />
|
|
|
+ <result column="channel_code" property="channelCode" />
|
|
|
+ <result column="product_name" property="productName" />
|
|
|
+ <result column="merchant_status" property="merchantStatus" />
|
|
|
+ <result column="merchant_remark" property="merchantRemark" />
|
|
|
+ <result column="price" property="price" />
|
|
|
+ <result column="trade_no" property="tradeNo" />
|
|
|
+ <result column="ip" property="ip"/>
|
|
|
+ <result column="view_status" property="viewStatus"/>
|
|
|
+
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+</mapper>
|