| 1234567891011121314151617181920 |
- <?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.SystemSettingDao">
- <!-- 可根据自己的需求,是否要使用 -->
- <resultMap type="com.chuanghai.ihotel.entity.SystemSettingEntity" id="systemSettingMap">
- <result property="id" column="id"/>
- <result property="deposit" column="deposit"/>
- <result property="preDay" column="pre_day"/>
- <result property="priceOfWater" column="price_of_water"/>
- <result property="priceOfElectric" column="price_of_electric"/>
- <result property="freeQuotaOfWater" column="free_quota_of_water"/>
- <result property="freeQuotaOfElectric" column="free_quota_of_electric"/>
- <result property="freeTotal" column="free_total"/>
- <result property="turnOffTime" column="turn_off_time"/>
- </resultMap>
- </mapper>
|