src/main/java/com/ruoyi/stock/service/StockInRecordService.java
@@ -12,7 +12,7 @@ public interface StockInRecordService extends IService<StockInRecord> { IPage<StockInRecordDto> listPage(Page page, StockInRecordDto stockInRecordDto); int add(StockInRecordDto stockInRecordDto); StockInRecord add(StockInRecordDto stockInRecordDto); int update(Long id, StockInRecordDto stockInRecordDto); @@ -23,4 +23,6 @@ void exportStockInRecord(HttpServletResponse response, StockInRecordDto stockInRecordDto); int batchApprove(List<Long> ids, Integer approvalStatus); int batchReAudit(List<Long> ids); }