guoyujie
2025-04-14 ecfd47af61f29888d2b69fec73867bd475f376b6
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
package com.example.erp.mapper.sd;
 
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.erp.entity.pp.ReportingWorkDetail;
import com.example.erp.entity.sd.OrderProcessDetail;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.sql.Date;
import java.time.LocalDateTime;
import java.util.List;
import java.util.Map;
 
@Mapper
@DS("sd")
public interface OrderProcessDetailMapper extends BaseMapper<OrderProcessDetail> {
    boolean insertOrderProcessDetail(@Param("processDetailList") List<OrderProcessDetail> processDetailList);
 
    void updateQuantity(String reportingWorkId,String process,String type);
 
    List<Map<String,String>> filterOrderProcess(String orderId);
 
    List<Map<String,Integer>> getGlassLRow(String orderId);
 
    List<Map<String, String>> filterLastProcess(String orderId, String orderNumber, String technologyNumber,String id);
 
    void insertByReportingWorkDetail(ReportingWorkDetail reportingWorkDetail, String processId, String thisProcess);
 
    List<Map<String,String>> filterOrderProcessCollect(Date selectTime1, Date selectTime2);
 
    List<Map<String, Integer>> getGlassLRowCollect(Date selectTime1, Date selectTime2);
 
    String selectNextProcess(String processId, String technologyNumber, String thisProcess);
 
    List<Map<String, String>> selectShiftQuantitySv(String creatorId, String startDate,String endDate);
}