| | |
| | | package com.zy.asrs.service; |
| | | |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.zy.asrs.entity.LocDetl; |
| | | import com.zy.asrs.entity.MatCodeCountDto; |
| | | import com.zy.asrs.entity.WrkDetl; |
| | | import com.zy.common.model.DetlDto; |
| | | |
| | |
| | | public interface WrkDetlService extends IService<WrkDetl> { |
| | | |
| | | void createWorkDetail(Integer workNo, List<DetlDto> detlDtos, String barcode, Long userId, Date now); |
| | | void createWorkDetail2(Integer workNo, List<MatCodeCountDto> detlDtos, String barcode, Long userId); |
| | | |
| | | List<WrkDetl> selectByWrkNo(Integer wrkNo); |
| | | |
| | |
| | | |
| | | List<WrkDetl> selectPakoutQuery(Integer staNo, String matnr); |
| | | |
| | | Double getBomQty(String bomCode,String matnr); |
| | | |
| | | List<WrkDetl> selectAndLogByOrderNoGroupByMatnrOfSum(String orderNo); |
| | | } |