洪城义警-正式版后台
钟日健
2022-03-09 03331c596d4b6202387486d8b5b06ff4b2b5d0e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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="org.springblade.modules.proclamation.mapper.ProclamationMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="proclamationResultMap" type="org.springblade.modules.proclamation.entity.Proclamation">
        <id column="id" property="id"/>
        <result column="name" property="name"/>
        <result column="context" property="context"/>
    </resultMap>
 
 
    <select id="selectProclamationPage" resultMap="proclamationResultMap">
        select * from sys_proclamation where is_deleted = 0
    </select>
 
</mapper>