yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.coproduction.service;
 
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.qianwen.core.mp.base.BaseService;
import com.qianwen.smartman.modules.coproduction.dto.OrderProcessReportWorkDTO;
import com.qianwen.smartman.modules.coproduction.dto.ResultByStartDTO;
import com.qianwen.smartman.modules.coproduction.entity.OrderProcess;
import com.qianwen.smartman.modules.coproduction.entity.OrderReportRecord;
import com.qianwen.smartman.modules.coproduction.entity.OrderWorkstation;
import com.qianwen.smartman.modules.coproduction.vo.OrderProcessStartWorkstationVO;
import com.qianwen.smartman.modules.cps.vo.WorkstationSingleVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/service/IOrderWorkstationService.class */
public interface IOrderWorkstationService extends BaseService<OrderWorkstation> {
    List<OrderWorkstation> getWorkstationInProcess(Set<Long> workstationIdList);
 
    void updateOrderWorkstationForStart(Map<Long, OrderReportRecord> orderReportRecordMap, ResultByStartDTO resultByStartDTO, Map<Long, OrderProcessStartWorkstationVO> workstationVoMap);
 
    void generateOrderWorkstation(List<OrderProcess> orderProcessList);
 
    void updateOrderWorkstationForStartMain(Long orderProcessId, Long recordId);
 
    void reportWorkstation(OrderProcessReportWorkDTO workDTO, OrderWorkstation orderWorkstation);
 
    Boolean checkProcessHaveAssign(Long orderProcessId);
 
    List<WorkstationSingleVO> getWorkstationCanStart(Long orderProcessId);
 
    OrderWorkstation buildWorkstation(OrderProcessReportWorkDTO reportWorkDTO, OrderWorkstation orderWorkstation);
 
    List<OrderWorkstation> getWorkstationByProcessList(List<Long> orderProcessIdList);
}