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.consumables.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.consumables.dto.ConsumablesInRecordDto;
import com.ruoyi.consumables.pojo.ConsumablesInRecord;
 
import javax.servlet.http.HttpServletResponse;
import java.util.List;
 
public interface ConsumablesInRecordService extends IService<ConsumablesInRecord> {
    IPage<ConsumablesInRecordDto> listPage(Page page, ConsumablesInRecordDto consumablesInRecordDto);
 
    int add(ConsumablesInRecordDto consumablesInRecordDto);
 
    int update(Long id, ConsumablesInRecordDto consumablesInRecordDto);
 
    int batchDelete(List<Long> ids);
 
    void exportConsumablesInRecord(HttpServletResponse response, ConsumablesInRecordDto consumablesInRecordDto);
}