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); 
 | 
} 
 |