| | |
| | | public interface StockInRecordService extends IService<StockInRecord> { |
| | | IPage<StockInRecordDto> listPage(Page page, StockInRecordDto stockInRecordDto); |
| | | |
| | | int add(StockInRecordDto stockInRecordDto); |
| | | Long add(StockInRecordDto stockInRecordDto); |
| | | |
| | | int update(Long id, StockInRecordDto stockInRecordDto); |
| | | |
| | | int batchDelete(List<Long> ids); |
| | | |
| | | void exportStockInRecord(HttpServletResponse response, StockInRecordDto stockInRecordDto); |
| | | |
| | | StockInRecordDto selectByRecord(Long id); |
| | | |
| | | int updateStockInRecord(StockInRecordDto stockInRecordDto); |
| | | } |