SysNoticeMapper.xml 1.3 KB

12345678910111213141516171819202122232425
  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.huyi.service.base.mapper.SysNoticeMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.huyi.service.base.entity.SysNotice">
  6. <id column="notice_id" property="noticeId" />
  7. <result column="company_id" property="companyId" />
  8. <result column="table_id" property="tableId" />
  9. <result column="notice_title" property="noticeTitle" />
  10. <result column="type" property="type" />
  11. <result column="notice_type" property="noticeType" />
  12. <result column="work_type" property="workType" />
  13. <result column="status" property="status" />
  14. <result column="message_send" property="messageSend" />
  15. <result column="message_id" property="messageId" />
  16. <result column="message_code" property="messageCode" />
  17. <result column="message_status" property="messageStatus" />
  18. <result column="open_type" property="openType" />
  19. <result column="open_url" property="openUrl" />
  20. <result column="remark" property="remark" />
  21. <result column="create_time" property="createTime" />
  22. </resultMap>
  23. </mapper>