| | |
| | | public interface StockOutRecordService extends IService<StockOutRecord> { |
| | | IPage<StockOutRecordDto> listPage(Page page, StockOutRecordDto stockOutRecordDto); |
| | | |
| | | int add(StockOutRecordDto stockOutRecordDto); |
| | | Long add(StockOutRecordDto stockOutRecordDto); |
| | | |
| | | int update(Long id, StockOutRecordDto stockOutRecordDto); |
| | | |
| | |
| | | |
| | | void exportStockOutRecord(HttpServletResponse response, StockOutRecordDto stockOutRecordDto); |
| | | |
| | | int batchApprove(List<Long> ids, Integer approvalStatus); |
| | | int batchApprove(List<Long> ids, Integer approvalStatus,Long warehouseInfoId); |
| | | } |