package doumeemes.service.ext; 
 | 
  
 | 
import doumeemes.core.model.PageData; 
 | 
import doumeemes.core.model.PageWrap; 
 | 
import doumeemes.dao.business.model.Procedures; 
 | 
import doumeemes.dao.ext.dto.QueryProceduresExtDTO; 
 | 
import doumeemes.dao.ext.vo.CompanyExtListVO; 
 | 
import doumeemes.dao.ext.vo.ProceduresExtListVO; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 工序信息Service定义 
 | 
 * @author 江蹄蹄 
 | 
 * @date 2022/04/20 10:57 
 | 
 */ 
 | 
public interface ProceduresExtService { 
 | 
  
 | 
    /** 
 | 
     * 分页查询 
 | 
     * @author 江蹄蹄 
 | 
     * @date 2022/04/20 10:57 
 | 
     */ 
 | 
    PageData<ProceduresExtListVO> findPage(PageWrap<QueryProceduresExtDTO> pageWrap); 
 | 
  
 | 
  
 | 
    List<ProceduresExtListVO> getListByCondition(QueryProceduresExtDTO queryDeviceExtDTO); 
 | 
    void loadCom(CompanyExtListVO com ); 
 | 
    void loadAll(); 
 | 
    List<ProceduresExtListVO> getGYListByCondition(Integer routeId); 
 | 
    ProceduresExtListVO getById(Integer comId, Integer id); 
 | 
    String getNamesByIds(Integer comId, List<Integer> ids); 
 | 
    String getNamesByIdStr(Integer comId,String idStr); 
 | 
  
 | 
    List<ProceduresExtListVO>  getSelfList(QueryProceduresExtDTO queryProceduresExtDTO); 
 | 
  
 | 
    List<Procedures> getListByMaterialId(Integer materialId); 
 | 
} 
 |