aaa
doum
2026-06-08 3ac279c9df7181c9f21d35a689a321b990b87b22
server/service/src/main/java/com/doumee/service/business/CategoryService.java
@@ -20,6 +20,9 @@
     */
    Integer create(Category category);
    Integer companyCreate(Category category);
    /**
     * 主键删除
     *
@@ -50,6 +53,7 @@
     */
    void updateById(Category category);
    void companyUpdateById(Category category);
    /**
     * 批量主键更新
     *
@@ -81,6 +85,9 @@
     */
    List<Category> findList(Category category);
    List<Category> findListSaaS(Category category);
    List<Category> companyFindList(Category category);
    /**
     * 查询类别
     * @param goodsId
@@ -103,4 +110,14 @@
     * @return long
     */
    long count(Category category);
    List<Category> findTree(Category category);
    List<Category> findChildren(Integer parentId);
    Integer createSubCategory(Category category);
    void updateSubCategory(Category category);
    void deleteSubCategory(Integer id);
}