admin
2019-03-13 69bee82b81626b82b7f39f0e459e4f56b1699b51
fanli/src/main/java/com/yeshi/fanli/service/inter/goods/GoodsClassService.java
@@ -1,8 +1,8 @@
package com.yeshi.fanli.service.inter.goods;
import java.util.List;
import java.util.Map;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.web.multipart.MultipartFile;
import com.yeshi.fanli.entity.admin.GoodsClassAdmin;
@@ -90,4 +90,21 @@
   public GoodsClass selectByPrimaryKey(Long gcid);
   /**
    *    根据系统ID查询所有分类-加入缓存
    * @param systemId 系统ID
    * @return
    * @throws Exception
    */
   public List<GoodsClass> getListClassCache(Long systemId) throws Exception;
   /**
    * 查询所有分类、主子类目
    * @param systemId
    * @return
    * @throws Exception
    */
   public List<Map<String, Object>> getClassListAllCache(Long systemId) throws Exception;
}