You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.7 KiB
40 lines
1.7 KiB
2 years ago
|
<?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.hc.tripbusiness.mapper.UserOrdersMapper">
|
||
|
|
||
|
<resultMap type="userOrders" id="UserOrdersMap">
|
||
|
<result property="ordersId" column="orders_id" jdbcType="INTEGER"/>
|
||
|
<result property="orderNo" column="order_no" jdbcType="VARCHAR"/>
|
||
|
<result property="userId" column="user_id" jdbcType="INTEGER"/>
|
||
|
<result property="body" column="body" jdbcType="VARCHAR"/>
|
||
|
<result property="subject" column="subject" jdbcType="VARCHAR"/>
|
||
|
<result property="totalAmount" column="total_amount" jdbcType="NUMERIC"/>
|
||
|
<result property="orderStatus" column="order_status" jdbcType="INTEGER"/>
|
||
|
<result property="isDe" column="is_de" jdbcType="INTEGER"/>
|
||
|
<result property="aliTradeNo" column="ali_trade_no" jdbcType="VARCHAR"/>
|
||
|
<result property="wxTradeNo" column="wx_trade_no" jdbcType="VARCHAR"/>
|
||
|
<result property="userInvoicesId" column="user_invoices_id" jdbcType="INTEGER"/>
|
||
|
<result property="createTime" column="create_time" jdbcType="BIGINT"/>
|
||
|
<result property="updateTime" column="update_time" jdbcType="BIGINT"/>
|
||
|
<result property="version" column="version" jdbcType="INTEGER"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
orders_id,
|
||
|
order_no,
|
||
|
user_id,
|
||
|
`body`,
|
||
|
`subject`,
|
||
|
total_amount,
|
||
|
order_status,
|
||
|
is_de,
|
||
|
ali_trade_no,
|
||
|
wx_trade_no,
|
||
|
user_invoices_id,
|
||
|
create_time,
|
||
|
update_time,
|
||
|
version
|
||
|
</sql>
|
||
|
|
||
|
</mapper>
|