From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 25 二月 2025 16:41:22 +0800 Subject: [PATCH] 淘宝转链接口更新 --- fanli/src/main/java/com/yeshi/fanli/dao/mybatis/brand/BrandClassShopMapper.java | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/brand/BrandClassShopMapper.java b/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/brand/BrandClassShopMapper.java index 0ba189f..347bfe3 100644 --- a/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/brand/BrandClassShopMapper.java +++ b/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/brand/BrandClassShopMapper.java @@ -2,12 +2,22 @@ import java.util.List; +import com.yeshi.fanli.entity.SystemEnum; import org.apache.ibatis.annotations.Param; import com.yeshi.fanli.dao.BaseMapper; import com.yeshi.fanli.entity.brand.BrandClassShop; public interface BrandClassShopMapper extends BaseMapper<BrandClassShop>{ + + + /** + * 鏍规嵁鍒嗙被id鎵归噺鍒犻櫎 + * @param list + * @return + */ + int deleteBatchByClassId(List<Long> list); + /** * 鏌ヨ鏈夋晥 @@ -16,7 +26,7 @@ * @param cid * @return */ - List<BrandClassShop> listEffective(@Param("start") long start, @Param("count") int count, @Param("cid") Long cid); + List<BrandClassShop> listEffective(@Param("cid") Long cid,@Param("system") SystemEnum system); long countEffective(@Param("cid") Long cid); -- Gitblit v1.8.0