yujian
2019-08-27 d8359ddb48dab5cc797a9d552e11fde571f4920c
fanli/src/main/java/com/yeshi/fanli/service/inter/lable/LabelService.java
@@ -5,8 +5,6 @@
import java.util.List;
import java.util.Map;
import org.apache.ibatis.annotations.Param;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.web.multipart.MultipartFile;
import com.yeshi.fanli.entity.bus.lable.Label;
@@ -184,6 +182,21 @@
   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;
   /**
    * 新建标签
    * @param lableNames 空格隔开
    * @param admin
    * @return
    */
   public List<Label> addBatchByNames(String lableNames, AdminUser admin)  throws LabelException;
   /**
    * 多个标签查询
    * @param list
    * @return
    */
   public List<Label> listByTitlesCache(List<String> list);
   
}