admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
fanli/src/main/java/com/yeshi/fanli/service/inter/goods/GoodsClassService.java
@@ -6,7 +6,7 @@
import org.springframework.web.multipart.MultipartFile;
import com.yeshi.fanli.entity.bus.clazz.GoodsClass;
import com.yeshi.fanli.exception.GoodsClassException;
import com.yeshi.fanli.exception.goods.GoodsClassException;
public interface GoodsClassService {
   
@@ -47,7 +47,7 @@
   public void removePicture(GoodsClass record) throws Exception;
   
   
   public List<GoodsClass> listquery() throws Exception;
   public List<GoodsClass> listquery(Integer sex) throws Exception;
   
@@ -71,7 +71,7 @@
    * @return
    * @throws Exception
    */
   public List<GoodsClass> getEffectiveClassCache() throws Exception;
   public List<GoodsClass> getEffectiveClassCache();
   /**
    * 查询所有分类、主子类目
@@ -79,7 +79,7 @@
    * @return
    * @throws Exception
    */
   public List<Map<String, Object>> getClassListAllCache() throws Exception;
   public List<Map<String, Object>> getClassListAllCache(boolean changePicture) throws Exception;
   /**
@@ -101,4 +101,12 @@
   public void updateOrder(Long id, Integer moveType) throws GoodsClassException;
   /**
    * 状态切换
    * @param id
    * @throws GoodsClassException
    */
   public void switchState(Long id) throws GoodsClassException;
}