master:系统BUG修复;
parent
9998a75c19
commit
18a41604bc
|
|
@ -37,7 +37,7 @@ CREATE TABLE `advert`
|
|||
|
||||
INSERT INTO `advert` VALUES (39, 1, 'oCYTRg9Wpk', 1, 1, 1, 1, 1, 1, 300.00, 3, 4, '22:00:00', 5, 121, '840*470', '不超过5.00M', NULL, NULL, NULL, NULL, NULL, 0, '0', '', '2025-08-13 22:51:52', '', '2025-08-13 22:51:52');
|
||||
INSERT INTO `advert` VALUES (40, 2, 'tyuG0P6QEl', 4, 1, 2, 1, 1, 2, 300.00, 3, 4, '22:00:00', 4, NULL, '', '', 4, NULL, NULL, NULL, NULL, 0, '0', '', '2025-08-13 22:52:52', '', '2025-08-13 22:52:52');
|
||||
INSERT INTO `advert` VALUES (41, 2, 'cWsRqCVIC7', 2, 1, 3, 1, 1, 2, 300.00, 3, 4, '22:00:00', 3, NULL, '', '', 2, NULL, NULL, NULL, NULL, 0, '0', '', '2025-08-13 22:53:32', '', '2025-08-13 22:53:32');
|
||||
INSERT INTO `advert` VALUES (41, 2, 'cWsRqCVIC7', 2, 1, 3, 1, 1, 2, 300.00, 3, 4, '22:00:00', 2, NULL, '', '', 2, NULL, NULL, NULL, NULL, 0, '0', '', '2025-08-13 22:53:32', '', '2025-08-13 22:53:32');
|
||||
INSERT INTO `advert` VALUES (42, 2, 'WG7oSnTbTn', 2, 1, 4, 1, 1, 2, 300.00, 3, 4, '22:00:00', 2, NULL, '', '', 2, NULL, NULL, NULL, NULL, 0, '0', '', '2025-08-13 22:54:06', '', '2025-08-13 22:54:06');
|
||||
INSERT INTO `advert` VALUES (43, 2, 'CnZcnndkoz', 2, 1, 5, 1, 1, 2, 300.00, 3, 4, '22:00:00', 2, NULL, '', '', 2, NULL, NULL, NULL, NULL, 0, '0', '', '2025-08-13 22:54:33', '', '2025-08-13 22:54:33');
|
||||
INSERT INTO `advert` VALUES (44, 2, 'fNn28SYfJT', 2, 1, 6, 1, 1, 2, 300.00, 3, 4, '22:00:00', 2, NULL, '', '', 2, NULL, NULL, NULL, NULL, 0, '0', '', '2025-08-13 22:54:54', '', '2025-08-13 22:54:54');
|
||||
|
|
|
|||
|
|
@ -5,15 +5,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<mapper namespace="com.ruoyi.xkt.mapper.StoreProductMapper">
|
||||
|
||||
<select id="fuzzyQueryResPicList" resultType="com.ruoyi.xkt.dto.storeProduct.StoreProdFuzzyResPicDTO">
|
||||
SELECT
|
||||
SELECT DISTINCT
|
||||
sp.id AS storeProdId,
|
||||
sp.store_id AS storeId,
|
||||
sp.prod_art_num AS prodArtNum,
|
||||
sf.file_url AS mainPicUrl
|
||||
FROM
|
||||
store_product sp
|
||||
LEFT JOIN store_product_file spf ON sp.id = spf.store_prod_id
|
||||
LEFT JOIN sys_file sf ON spf.file_id = sf.id
|
||||
JOIN store_product_file spf ON sp.id = spf.store_prod_id
|
||||
JOIN sys_file sf ON spf.file_id = sf.id
|
||||
WHERE
|
||||
sp.del_flag = 0
|
||||
AND sp.prod_status IN (2,3)
|
||||
|
|
|
|||
Loading…
Reference in New Issue