liding
2 天以前 b28173836631e9ecb1aafbaa5786c0383462208e
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 javax.servlet.http.HttpServletResponse;
import java.util.List;
 
public interface StockInRecordService extends IService<StockInRecord> {
    IPage<StockInRecordDto> listPage(Page page, 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);
}