liyong
5 小时以前 1ca5584d7e3200a9af65a099bd26d3593e2ba702
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.stock.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.stock.dto.StockInRecordDto;
import com.ruoyi.stock.pojo.StockInRecord;
 
import jakarta.servlet.http.HttpServletResponse;
import java.util.List;
 
public interface StockInRecordService extends IService<StockInRecord> {
    IPage<StockInRecordDto> listPage(Page page, StockInRecordDto stockInRecordDto);
 
    int add(StockInRecordDto stockInRecordDto);
 
    int update(Long id, StockInRecordDto stockInRecordDto);
 
    int batchDelete(List<Long> ids);
 
    int batchDeletePending(List<Long> ids);
 
    void exportStockInRecord(HttpServletResponse response, StockInRecordDto stockInRecordDto);
 
    int batchApprove(List<Long> ids, Integer approvalStatus);
}