111
k94314517
2023-08-16 e1ee1084bb6db4f8a87894109be1b7a9d216cfec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package doumeemes.service.ext;
 
import doumeemes.core.model.PageData;
import doumeemes.core.model.PageWrap;
import doumeemes.dao.ext.dto.QueryCategoryExtDTO;
import doumeemes.dao.ext.vo.BarcodeParamExtListVO;
import doumeemes.dao.ext.vo.CategoryExtListVO;
import doumeemes.dao.ext.vo.CompanyExtListVO;
 
import java.util.List;
 
/**
 * 设置类分类信息表Service定义
 * @author 江蹄蹄
 * @date 2022/04/27 16:15
 */
public interface CategoryExtService {
 
    /**
     * 分页查询
     * @author 江蹄蹄
     * @date 2022/04/27 16:15
     */
    PageData<CategoryExtListVO> findPage(PageWrap<QueryCategoryExtDTO> pageWrap);
 
    List<CategoryExtListVO> getListByType(String type,Integer rootDepartId,String cateType,String id);
 
 
    List<CategoryExtListVO> treeCategoryList(QueryCategoryExtDTO param);
 
    void loadCom(CompanyExtListVO com );
 
    CategoryExtListVO getByCategoryId(Integer comid, Integer id);
    CategoryExtListVO getByCategoryId(Integer comid, Integer id,List<CategoryExtListVO> allList);
    void loadAll();
 
    List<CategoryExtListVO> findList(QueryCategoryExtDTO queryCategoryExtDTO);
}