linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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.counties.mapper.CountiesMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="countiesResultMap" type="org.springblade.modules.counties.entity.CountiesEntity">
    </resultMap>
 
 
    <select id="selectCountiesPage" resultMap="countiesResultMap">
        select * from jczz_counties
    </select>
 
 
</mapper>