智慧保安后台管理-外网项目备份
Administrator
2021-09-22 35a6e9cedc2f44bebc9e4ec81a429eddc8b631ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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.licet.mapper.LicetMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="licetResultMap" type="org.springblade.modules.licet.entity.Licet">
        <id column="id" property="id"/>
        <result column="originalName" property="originalname"/>
        <result column="template" property="template"/>
        <result column="ptype" property="ptype"/>
    </resultMap>
 
 
    <select id="selectLicetPage" resultMap="licetResultMap">
        select * from sys_licet where is_deleted = 0
    </select>
 
</mapper>