| 12345678910111213141516171819 |
- <?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.chuanghai.ihotel.dao.HotelOderRefundDao">
- <!-- 可根据自己的需求,是否要使用 -->
- <resultMap type="com.chuanghai.ihotel.entity.HotelOderRefundEntity" id="hotelOderRefundMap">
- <result property="id" column="id"/>
- <result property="hotelOrderId" column="hotel_order_id"/>
- <result property="refundId" column="refund_id"/>
- <result property="refundAmount" column="refund_amount"/>
- <result property="statu" column="statu"/>
- <result property="remark" column="remark"/>
- <result property="createTime" column="create_time"/>
- <result property="finishTime" column="finish_time"/>
- </resultMap>
- </mapper>
|