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.dto.ConsumablesInventoryDto;
|
import com.ruoyi.consumables.pojo.ConsumablesInventory;
|
import com.ruoyi.framework.web.domain.R;
|
import org.springframework.web.multipart.MultipartFile;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
/**
|
* <p>
|
* 库存表 服务类
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-01-21 04:16:36
|
*/
|
public interface ConsumablesInventoryService extends IService<ConsumablesInventory> {
|
|
IPage<ConsumablesInventoryDto> pageConsumablesInventory(Page page, ConsumablesInventoryDto consumablesInventoryDto);
|
|
Boolean addConsumablesInventory(ConsumablesInventoryDto consumablesInventoryDto);
|
|
Boolean subtractConsumablesInventory(ConsumablesInventoryDto consumablesInventoryDto);
|
|
R importConsumablesInventory(MultipartFile file);
|
|
void exportConsumablesInventory(HttpServletResponse response, ConsumablesInventoryDto consumablesInventoryDto);
|
|
IPage<ConsumablesInRecordDto> consumablesInventoryPage(ConsumablesInventoryDto consumablesInventoryDto, Page page);
|
|
IPage<ConsumablesInventoryDto> consumablesInAndOutRecord(ConsumablesInventoryDto consumablesInventoryDto, Page page);
|
|
Boolean frozenConsumables(ConsumablesInventoryDto consumablesInventoryDto);
|
|
Boolean thawConsumables(ConsumablesInventoryDto consumablesInventoryDto);
|
}
|