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
| package com.example.erp.mapper.pp;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.example.erp.entity.pp.ProductionScheduling;
| import org.apache.ibatis.annotations.Mapper;
|
| import java.time.LocalDate;
| import java.util.List;
| import java.util.Map;
|
| @Mapper
| public interface ProductionSchedulingMapper extends BaseMapper<ProductionScheduling> {
|
|
| List<ProductionScheduling> selectOkSchedulingMp(Integer offset, Integer pageSize, String selectTime1, String selectTime2, String orderIds, String processes, ProductionScheduling productionScheduling);
|
| List<ProductionScheduling> selectNoSchedulingMp(Integer offset, Integer pageSize, String selectTime1, String selectTime2, String orderIds, String processes, ProductionScheduling productionScheduling);
|
| Integer selectMaxId();
|
| Boolean insertSelective(String schedulingId, String orderId, String orderNumber,String technologyNumber, String processes, Integer schedulingQuantity, LocalDate scheduledStartTime, LocalDate planEndTime, String notes);
|
| Boolean examineSchedulingMp(String schedulingId, String userName, Integer schedulingQuantity, String notes);
|
| Boolean deleteSchedulingMp(String schedulingId);
|
| List<Map<String,String>> selectProcess();
|
| Map<String, Integer> getPageTotal(Integer offset, Integer pageSize, String selectTime1, String selectTime2, String orderId, String processes, ProductionScheduling productionScheduling);
|
| Map<String, Integer> getOkPageTotal(Integer offset, Integer pageSize, String selectTime1, String selectTime2, String orderId, String processes, ProductionScheduling productionScheduling);
|
| Boolean cancelReviewSchedulingMp(String schedulingId);
|
| // Integer selectNumberMp(String orderId, String orderNumber, String processes);
| }
|
|