admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
fanli/src/main/java/com/yeshi/fanli/service/inter/goods/GoodsSubClassService.java
@@ -7,7 +7,7 @@
import com.yeshi.fanli.entity.accept.AcceptData;
import com.yeshi.fanli.entity.bus.clazz.GoodsSubClass;
import com.yeshi.fanli.exception.GoodsSubClassException;
import com.yeshi.fanli.exception.goods.GoodsSubClassException;
public interface  GoodsSubClassService {
@@ -71,7 +71,7 @@
    * @return
    * @throws Exception
    */
   public List<GoodsSubClass> getGoodsSecondClass(Long rootId, Integer state) throws Exception;
   public List<GoodsSubClass> getGoodsSecondClass(Long rootId, Integer state,Integer month) throws Exception;
   public List<GoodsSubClass> queryByRootIdAndWeight(Long rootId, int type, int weight) throws Exception;
@@ -89,7 +89,7 @@
    * @return
    * @throws Exception
    */
   public List<GoodsSubClass> getSubClassCache(Long rootId, Integer state) throws Exception;
   public List<GoodsSubClass> getSubClassCache(Long rootId, Integer state,Integer month) throws Exception;
   /**
    * 统计前端 点击次数
@@ -123,7 +123,14 @@
    * @throws GoodsSubClassException
    * @throws Exception
    */
   public void saveObject(MultipartFile file,MultipartFile file2,  GoodsSubClass record, Integer type, Long pid)
   public void saveObject(MultipartFile file,MultipartFile file2,  GoodsSubClass record, Integer type, Long pid,Long labelId)
         throws GoodsSubClassException, Exception;
   /**
    * 状态切换
    * @param id
    * @throws GoodsSubClassException
    */
   public void switchState(Long id) throws GoodsSubClassException;
}