jiangping
2025-04-17 e10e8f5fcb5a6a2716d04c152d236109359254a8
server/src/main/java/com/doumee/service/business/CategoryService.java
@@ -3,6 +3,8 @@
import com.doumee.core.model.PageData;
import com.doumee.core.model.PageWrap;
import com.doumee.dao.business.model.Category;
import com.doumee.dao.web.vo.CategoryVO;
import java.util.List;
/**
@@ -95,5 +97,16 @@
     */
    long count(Category category);
    /**
     * 获取分类树
     * @param categoryType
     * @return
     */
    List<CategoryVO>  getCategoryVOTree(String categoryType,Integer categoryId);
    List<CategoryVO>  getCategoryVOList(Integer categoryType,Integer isRoot);
    List<CategoryVO>  getCategoryVOForGCXTree(Integer categoryId);
    List<Category> treeList(Category param );
}