liyong
4 天以前 dee56ed8d52f1d8ee1f89b369561c49e9b3b7c2d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 javax.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);
 
    void exportStockInRecord(HttpServletResponse response, StockInRecordDto stockInRecordDto);
}