Parcourir la source

Update PmsProductCategoryService.java

macro il y a 5 ans
Parent
commit
f1ff4c0d5b

+ 25 - 1
mall-admin/src/main/java/com/macro/mall/service/PmsProductCategoryService.java

@@ -10,25 +10,49 @@ import org.springframework.transaction.annotation.Transactional;
 import java.util.List;
 
 /**
- * 品分类Service
+ * 品分类Service
  * Created by macro on 2018/4/26.
  */
 public interface PmsProductCategoryService {
+    /**
+     * 创建商品分类
+     */
     @Transactional
     int create(PmsProductCategoryParam pmsProductCategoryParam);
 
+    /**
+     * 修改商品分类
+     */
     @Transactional
     int update(Long id, PmsProductCategoryParam pmsProductCategoryParam);
 
+    /**
+     * 分页获取商品分类
+     */
     List<PmsProductCategory> getList(Long parentId, Integer pageSize, Integer pageNum);
 
+    /**
+     * 删除商品分类
+     */
     int delete(Long id);
 
+    /**
+     * 根据ID获取商品分类
+     */
     PmsProductCategory getItem(Long id);
 
+    /**
+     * 批量修改导航状态
+     */
     int updateNavStatus(List<Long> ids, Integer navStatus);
 
+    /**
+     * 批量修改显示状态
+     */
     int updateShowStatus(List<Long> ids, Integer showStatus);
 
+    /**
+     * 以层级形式获取商品分类
+     */
     List<PmsProductCategoryWithChildrenItem> listWithChildren();
 }