| 123456789101112131415161718192021222324 |
- <?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.sy.mapper.orders.RetreatGoodsMapper">
- <resultMap id="BaseResultMap" type="com.sy.entity.RetreatGoods">
- <!--@mbg.generated-->
- <!--@Table retreat_goods-->
- <id column="id" jdbcType="VARCHAR" property="id" />
- <result column="shop_id" jdbcType="VARCHAR" property="shopId" />
- <result column="order_id" jdbcType="VARCHAR" property="orderId" />
- <result column="pay_status" jdbcType="INTEGER" property="payStatus" />
- <result column="retreat_remark" jdbcType="VARCHAR" property="retreatRemark" />
- <result column="pay_fee" jdbcType="VARCHAR" property="payFee" />
- <result column="fee" jdbcType="NUMERIC" property="fee" />
- <result column="operator_id" jdbcType="VARCHAR" property="operatorId" />
- <result column="operator_name" jdbcType="VARCHAR" property="operatorName" />
- <result column="create_at" jdbcType="TIMESTAMP" property="createAt" />
- <result column="refund_type" jdbcType="VARCHAR" property="refundType" />
- </resultMap>
- <sql id="Base_Column_List">
- <!--@mbg.generated-->
- id, shop_id, order_id, pay_status, retreat_remark, pay_fee, fee, operator_id, operator_name,
- create_at, refund_type
- </sql>
- </mapper>
|