|
@@ -0,0 +1,53 @@
|
|
|
+<?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.szwl.mapper.TOrderTaskMapper">
|
|
|
+
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
+ <resultMap id="BaseResultMap" type="com.szwl.model.entity.TOrderTask">
|
|
|
+ <id column="id" property="id" />
|
|
|
+ <result column="create_date" property="createDate" />
|
|
|
+ <result column="modify_date" property="modifyDate" />
|
|
|
+ <result column="admin_id" property="adminId" />
|
|
|
+ <result column="admin_proportion" property="adminProportion" />
|
|
|
+ <result column="agency_id" property="agencyId" />
|
|
|
+ <result column="agency_proportion" property="agencyProportion" />
|
|
|
+ <result column="alt_info" property="altInfo" />
|
|
|
+ <result column="client_id" property="clientId" />
|
|
|
+ <result column="equipment_id" property="equipmentId" />
|
|
|
+ <result column="frp_code" property="frpCode" />
|
|
|
+ <result column="merchant_id" property="merchantId" />
|
|
|
+ <result column="merchant_proportion" property="merchantProportion" />
|
|
|
+ <result column="pay_date" property="payDate" />
|
|
|
+ <result column="personage_id" property="personageId" />
|
|
|
+ <result column="personage_proportion" property="personageProportion" />
|
|
|
+ <result column="price" property="price" />
|
|
|
+ <result column="product_id" property="productId" />
|
|
|
+ <result column="product_desc" property="productDesc" />
|
|
|
+ <result column="product_name" property="productName" />
|
|
|
+ <result column="product_no" property="productNo" />
|
|
|
+ <result column="refund_date" property="refundDate" />
|
|
|
+ <result column="sn" property="sn" />
|
|
|
+ <result column="status" property="status" />
|
|
|
+ <result column="type" property="type" />
|
|
|
+ <result column="trx_no" property="trxNo" />
|
|
|
+ <result column="refund_trx_no" property="refundTrxNo" />
|
|
|
+ <result column="es" property="es" />
|
|
|
+ <result column="refund_amount" property="refundAmount" />
|
|
|
+ <result column="note" property="note" />
|
|
|
+ <result column="pay_platform" property="payPlatform" />
|
|
|
+ <result column="is_settlement" property="isSettlement" />
|
|
|
+ <result column="wx_id" property="wxId" />
|
|
|
+ <result column="proportion_desc" property="proportionDesc" />
|
|
|
+ <result column="marketing_amount" property="marketingAmount" />
|
|
|
+ <result column="coupons" property="coupons" />
|
|
|
+ <result column="refund_marketing_amount" property="refundMarketingAmount" />
|
|
|
+ <result column="order_status" property="orderStatus" />
|
|
|
+ <result column="product_number" property="productNumber" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 通用查询结果列 -->
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ id, create_date, modify_date, admin_id, admin_proportion, agency_id, agency_proportion, alt_info, client_id, equipment_id, frp_code, merchant_id, merchant_proportion, pay_date, personage_id, personage_proportion, price, product_id, product_desc, product_name, product_no, refund_date, sn, status, type, trx_no, refund_trx_no, es, refund_amount, note, pay_platform, is_settlement, wx_id, proportion_desc, marketing_amount, coupons, refund_marketing_amount, order_status, product_number
|
|
|
+ </sql>
|
|
|
+
|
|
|
+</mapper>
|