From dbc43310f330bbb168acc870f25dc32e54f35f20 Mon Sep 17 00:00:00 2001 From: liujiang <569804566@qq.com> Date: Fri, 22 Aug 2025 14:20:28 +0800 Subject: [PATCH] =?UTF-8?q?master=EF=BC=9A=E5=95=86=E5=93=81=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E8=BF=94=E5=9B=9E=E6=95=B0=E6=8D=AE=E8=B0=83=E6=95=B4?= =?UTF-8?q?=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- xkt/src/main/resources/mapper/StoreProductFileMapper.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xkt/src/main/resources/mapper/StoreProductFileMapper.xml b/xkt/src/main/resources/mapper/StoreProductFileMapper.xml index 0d226f3e0..55976a3b9 100644 --- a/xkt/src/main/resources/mapper/StoreProductFileMapper.xml +++ b/xkt/src/main/resources/mapper/StoreProductFileMapper.xml @@ -18,9 +18,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" spf.file_size AS fileSize, spf.order_num AS orderNum FROM - store_product_file spf - LEFT JOIN sys_file sf ON spf.file_id = sf.id AND spf.del_flag = 0 - WHERE spf.store_prod_id = #{storeProdId} + store_product_file spf JOIN sys_file sf ON spf.file_id = sf.id + WHERE + spf.del_flag = 0 AND spf.file_type IN (1,2,3) AND spf.store_prod_id = #{storeProdId}