mitao
2024-07-08 022a7ff7abf82cd2546e18071ade5228b4e2339f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.sinata.modular.system.dao.SystemNoticeMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.sinata.modular.system.model.SystemNotice">
        <id column="id" property="id" />
        <result column="param" property="param" />
        <result column="type" property="type" />
        <result column="content" property="content" />
        <result column="is_delete" property="isDelete" />
        <result column="create_time" property="createTime" />
        <result column="admin_id" property="adminId" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, param, type, content, is_delete, create_time, admin_id
    </sql>
 
</mapper>