2020-02-13 10:48:51 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<!DOCTYPE mapper
|
2021-04-12 17:02:55 +08:00
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
2020-07-20 10:41:32 +08:00
|
|
|
<mapper namespace="com.ruoyi.system.mapper.SysNoticeMapper">
|
2021-04-12 17:02:55 +08:00
|
|
|
|
2020-02-13 10:48:51 +08:00
|
|
|
<resultMap type="SysNotice" id="SysNoticeResult">
|
2021-04-12 17:02:55 +08:00
|
|
|
<result property="noticeId" column="notice_id"/>
|
|
|
|
<result property="noticeTitle" column="notice_title"/>
|
|
|
|
<result property="noticeType" column="notice_type"/>
|
|
|
|
<result property="noticeContent" column="notice_content"/>
|
|
|
|
<result property="status" column="status"/>
|
|
|
|
<result property="createBy" column="create_by"/>
|
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
<result property="remark" column="remark"/>
|
2020-02-13 10:48:51 +08:00
|
|
|
</resultMap>
|
2021-04-12 17:02:55 +08:00
|
|
|
|
2020-02-13 10:48:51 +08:00
|
|
|
</mapper>
|