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);
|
}
|