提交 | 用户 | 时间
|
722af2
|
1 |
<?xml version="1.0" encoding="UTF-8" ?> |
X |
2 |
<!DOCTYPE mapper |
|
3 |
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
4 |
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
5 |
<mapper namespace="com.dl.system.mapper.SysNoticeMapper"> |
|
6 |
|
|
7 |
<resultMap type="SysNotice" id="SysNoticeResult"> |
|
8 |
<result property="noticeId" column="notice_id"/> |
|
9 |
<result property="noticeTitle" column="notice_title"/> |
|
10 |
<result property="noticeType" column="notice_type"/> |
|
11 |
<result property="noticeContent" column="notice_content"/> |
|
12 |
<result property="status" column="status"/> |
|
13 |
<result property="createBy" column="create_by"/> |
|
14 |
<result property="createTime" column="create_time"/> |
|
15 |
<result property="updateBy" column="update_by"/> |
|
16 |
<result property="updateTime" column="update_time"/> |
|
17 |
<result property="remark" column="remark"/> |
|
18 |
</resultMap> |
|
19 |
|
|
20 |
</mapper> |