zhongrj
2024-03-16 aca33b1ff34ea0f2db3290d4c0b5d898f66de108
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.backblast.mapper.BackblastPubRecordMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="backblastPubRecordResultMap" type="org.springblade.modules.backblast.vo.BackblastPubRecordVO">
    </resultMap>
 
 
    <select id="selectBackblastPubRecordPage" resultMap="backblastPubRecordResultMap">
        select * from jczz_backblast_pub_record where is_deleted = 0
    </select>
 
 
</mapper>