22 lines
613 B
XML
22 lines
613 B
XML
<?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.xkt.mapper.StoreHomepageMapper">
|
|
|
|
<select id="selectTopLeftList">
|
|
SELECT DISTINCT
|
|
sh.biz_id,
|
|
sh.jump_type,
|
|
sf.file_url,
|
|
sh.order_num
|
|
FROM
|
|
store_homepage sh
|
|
LEFT JOIN sys_file sf ON sh.file_id = sf.id
|
|
WHERE
|
|
sh.del_flag = 0
|
|
AND sh.file_type = 1
|
|
AND sh.store_id = #{storeId}
|
|
</select>
|
|
|
|
</mapper> |