nnnjjj123
2021-01-06 3b67e70f41bac39d1d74d2039a2fb286a32a8d41
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="org.springblade.modules.lx.mapper.LxMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="lxResultMap" type="org.springblade.modules.lx.entity.Lx">
        <id column="id" property="id"/>
        <result column="tnumber" property="tnumber"/>
        <result column="types" property="types"/>
    </resultMap>
 
 
    <select id="selectLxPage" resultMap="lxResultMap">
        select * from sys_lx where is_deleted = 0
    </select>
 
    <select id="selectList" resultType="java.util.HashMap">
         select * from sys_lx
    </select>
 
</mapper>