SystemNoticeDao.xml 697 B

1234567891011121314151617
  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.SystemNoticeDao">
  4. <!-- 可根据自己的需求,是否要使用 -->
  5. <resultMap type="com.chuanghai.ihotel.entity.SystemNoticeEntity" id="systemNoticeMap">
  6. <result property="id" column="id"/>
  7. <result property="title" column="title"/>
  8. <result property="content" column="content"/>
  9. <result property="type" column="type"/>
  10. <result property="createTime" column="create_time"/>
  11. <result property="readFlag" column="read_flag"/>
  12. </resultMap>
  13. </mapper>