| | |
| | | |
| | | import java.sql.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Mapper |
| | | public interface FlowCardMapper { |
| | |
| | | //分架明细查询 |
| | | List<FlowCard> DetailsSelectMp(String orderId, FlowCard flowCard); |
| | | |
| | | //删除工单 |
| | | Boolean DeleteFlowCardMp(String orderId, String processId); |
| | | |
| | | List<FlowCard> SelectNoCardMp(String orderId, String productionId, FlowCard flowCard); |
| | | //分架新增明细查询 |
| | | List<Map<String,String>> SelectNoCardMp(String orderId, String productionId, FlowCard flowCard); |
| | | |
| | | //修改排版状态 |
| | | Boolean UpdateLayoutStatusMp(String processId); |
| | | |
| | | Integer SelectLayoutStatus(String processId); |
| | | |
| | | Integer ReportingWorkCount(String processId); |
| | | |
| | | Boolean AddFlowCardMp(String processId, Integer orderNumber, Integer landingSequence, Integer quantity, String productionId, String userName); |
| | | |
| | | Boolean UpdateFlowState(String productionId, Integer orderNumber); |
| | | |
| | | Integer SelectFlowCount(String productionId); |
| | | |
| | | |
| | | Boolean UpdateProcessingCard(String productionId, int state); |
| | | |
| | | Boolean UpdateDeleteState(String orderId, String processId); |
| | | } |