buhuazhen
2 天以前 d562551c7efd2c19fd037ab4fb1b7a355ff80f42
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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);
}