tangzy
2021-09-06 097a14bada17d8b2bc776ba0d97e6c67bf1eba89
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.licetuser.mapper.LicetuserMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="licetuserResultMap" type="org.springblade.modules.licetuser.entity.Licetuser">
        <id column="id" property="id"/>
        <result column="userid" property="userid"/>
        <result column="ptype" property="ptype"/>
        <result column="templateid" property="templateid"/>
    </resultMap>
 
 
    <select id="selectLicetuserPage" resultMap="licetuserResultMap">
        select * from sys_licetuser where is_deleted = 0
    </select>
 
</mapper>