yangys
2024-05-18 13304af2facdc0e9d8df197c0cf5ed51c94ffc8f
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 com.qianwen.smartman.modules.coproduction.service;
 
import java.util.Date;
import java.util.List;
import com.qianwen.core.mp.base.BaseService;
import com.qianwen.core.oss.model.BladeFile;
import com.qianwen.smartman.modules.coproduction.dto.PlanAndOrderDTO;
import com.qianwen.smartman.modules.coproduction.entity.Order;
import com.qianwen.smartman.modules.coproduction.vo.OrderAndProcessInfoVO;
import com.qianwen.smartman.modules.coproduction.vo.OrderAssignVO;
import com.qianwen.smartman.modules.coproduction.vo.OrderQueryVO;
import com.qianwen.smartman.modules.coproduction.vo.OrderVO;
 
public interface IOrderService extends BaseService<Order> {
    List<OrderVO> list(OrderQueryVO orderQueryVO);
 
    Boolean remove(List<Long> ids, Long planId);
 
    OrderVO assign(OrderAssignVO orderAssignVO);
 
    void reportOrder(Integer orderQualifyNum, Integer orderScrappedNum, Order order, Boolean isDel);
 
    void updateOrderByStart(Order order, Date startTime);
 
    PlanAndOrderDTO getPlanAndOrderByOrderId(Long orderId);
 
    List<OrderVO> planOrderList(OrderQueryVO orderQueryVO);
 
    OrderAndProcessInfoVO getOrderAndProcessList(Long orderId);
 
    Order reportOrderData(Order order);
 
    Order delReportOrderData(Order order, List<Long> removeRecordIds);
 
    BladeFile export(Long orderId);
 
    BladeFile exportList(OrderQueryVO orderQueryVO);
}