liding
4 天以前 74f9e1f4f009907d4f8ebda80f522a25a25f87f2
src/main/java/com/ruoyi/stock/service/StockInRecordService.java
@@ -12,11 +12,15 @@
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);
}