admin
2024-01-23 81da61b828e29b7745e1382dfbbaeb685dc083ef
fanli/src/main/java/com/yeshi/fanli/service/inter/lable/LabelGoodsService.java
@@ -65,9 +65,9 @@
   public Long getRelationNum(Long labelId) throws LabelGoodsException;
   public Long isExistence(Long goodsId, Long labId);
   public Long isExistence(String goodsId, Long labId);
   public int deleteByGoodsIdAndLabId(Long goodsId, Long labId);
   public int deleteByGoodsIdAndLabId(String goodsId, Long labId);
   /**
    * 查询商品对应标签 --分页
@@ -78,9 +78,9 @@
    * @return
    * @throws LabelClassException
    */
   public List<LabelGoods> queryByGoodsId(int start, int count, Long goodsId) throws LabelClassException;
   public List<LabelGoods> queryByGoodsId(int start, int count, String goodsId) throws LabelClassException;
   public int getCountQueryByGoodsId(Long goodsId);
   public int getCountQueryByGoodsId(String goodsId);
   
   
   /**
@@ -88,7 +88,7 @@
    * @param goodsId
    * @return
    */
   public int getCountByGoodsId(Long goodsId);
   public int getCountByGoodsId(String goodsId);
   
   /**
@@ -107,7 +107,7 @@
    * @param admin
    * @throws Exception
    */
   public void batchGoodsAddLables(List<Long> goodsIdList, List<Long> labIdList, AdminUser admin) throws Exception;
   public void batchGoodsAddLables(List<String> goodsIdList, List<Long> labIdList, AdminUser admin) throws Exception;
   /**
    * 单个商品贴标签
@@ -116,6 +116,6 @@
    * @param admin
    * @throws Exception
    */
   public void singleGoodsAddLables(Long goodsId, List<Long> labIdList, AdminUser admin) throws Exception;
   public void singleGoodsAddLables(String goodsId, List<Long> labIdList, AdminUser admin) throws Exception;
   
}