Pu Zhibing
2025-06-19 c42c20b9c71c25ed119884ffe130ac013afb7f07
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="com.ruoyi.system.mapper.config.OneClinkSyncingMapper">
 
 
    <select id="pageOneClinkSyncing" resultType="com.ruoyi.system.domain.vo.MgtOneClinkSyncPageVO">
        select
            syncing_id,
            syncing_name,
            cover_url,
            details_picture,
            platform_coupon_flag,
            platform_birthday_flag,
            shop_num,
            syncing_time
        from
            t_one_clink_syncing
        where
            del_flag=0
    </select>
</mapper>