admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/service/inter/lable/LabelService.java
@@ -10,7 +10,7 @@
import com.yeshi.fanli.entity.bus.lable.Label;
import com.yeshi.fanli.entity.bus.lable.LabelGoods;
import com.yeshi.fanli.entity.common.AdminUser;
import com.yeshi.fanli.exception.LabelException;
import com.yeshi.fanli.exception.goods.quality.LabelException;
public interface LabelService {
   
@@ -182,7 +182,7 @@
   public List<LabelGoods> getByGoodsId(Long goodsId);
   
   public List<Label> selectByTitleCache(String labKey, String title) throws LabelException;
   public Label getByTitleCache(String labKey, String title) throws LabelException;
   /**
    * 新建标签
@@ -191,5 +191,12 @@
    * @return
    */
   public List<Label> addBatchByNames(String lableNames, AdminUser admin)  throws LabelException;
   /**
    * 多个标签查询
    * @param list
    * @return
    */
   public List<Label> listByTitlesCache(List<String> list);
   
}