admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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);