RetreatGoodsMapper.xml 1.3 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.sy.mapper.orders.RetreatGoodsMapper">
  4. <resultMap id="BaseResultMap" type="com.sy.entity.RetreatGoods">
  5. <!--@mbg.generated-->
  6. <!--@Table retreat_goods-->
  7. <id column="id" jdbcType="VARCHAR" property="id" />
  8. <result column="shop_id" jdbcType="VARCHAR" property="shopId" />
  9. <result column="order_id" jdbcType="VARCHAR" property="orderId" />
  10. <result column="pay_status" jdbcType="INTEGER" property="payStatus" />
  11. <result column="retreat_remark" jdbcType="VARCHAR" property="retreatRemark" />
  12. <result column="pay_fee" jdbcType="VARCHAR" property="payFee" />
  13. <result column="fee" jdbcType="NUMERIC" property="fee" />
  14. <result column="operator_id" jdbcType="VARCHAR" property="operatorId" />
  15. <result column="operator_name" jdbcType="VARCHAR" property="operatorName" />
  16. <result column="create_at" jdbcType="TIMESTAMP" property="createAt" />
  17. <result column="refund_type" jdbcType="VARCHAR" property="refundType" />
  18. </resultMap>
  19. <sql id="Base_Column_List">
  20. <!--@mbg.generated-->
  21. id, shop_id, order_id, pay_status, retreat_remark, pay_fee, fee, operator_id, operator_name,
  22. create_at, refund_type
  23. </sql>
  24. </mapper>