SystemSettingDao.xml 954 B

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