洪城义警-正式版后台
zengh
2022-05-26 4310c19a73f960dfd79c90cfe960cf564b068f72
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.rotation.mapper.RotationMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="rotationResultMap" type="org.springblade.modules.rotation.entity.Rotation">
        <id column="id" property="id"/>
        <result column="url" property="url"/>
        <result column="junpUrl" property="junpurl"/>
        <result column="name" property="name"/>
    </resultMap>
 
 
    <select id="selectRotationPage" resultMap="rotationResultMap">
        select * from sys_rotation where is_deleted = 0
    </select>
 
</mapper>