27 lines
1.3 KiB
XML
27 lines
1.3 KiB
XML
<?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.chaozhanggui.system.cashierservice.mapper.TbThirdPartyCouponRecordMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.TbThirdPartyCouponRecord">
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
|
<result property="orderId" column="order_id" jdbcType="INTEGER"/>
|
|
<result property="state" column="state" jdbcType="TINYINT"/>
|
|
<result property="plat" column="plat" jdbcType="VARCHAR"/>
|
|
<result property="code" column="code" jdbcType="VARCHAR"/>
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="checkTime" column="check_time" jdbcType="TIMESTAMP"/>
|
|
<result property="shopId" column="shop_id" jdbcType="INTEGER"/>
|
|
<result property="num" column="num" jdbcType="INTEGER"/>
|
|
<result property="cartIdList" column="cart_id_list" jdbcType="VARCHAR"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,order_id,state,
|
|
plat,code,create_time,
|
|
check_time,shop_id,num,
|
|
cart_id_list
|
|
</sql>
|
|
</mapper>
|