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.ConsumablesInventoryDto; import com.ruoyi.consumables.dto.ConsumablesUnInventoryDto; import com.ruoyi.consumables.pojo.ConsumablesUnInventory; import javax.servlet.http.HttpServletResponse; /** *

* 不合格库存表 服务类 *

* * @author 芯导软件(江苏)有限公司 * @since 2026-01-22 10:17:45 */ public interface ConsumablesUnInventoryService extends IService { IPage pageConsumablesUnInventory(Page page, ConsumablesUnInventoryDto ConsumablesUnInventoryDto); Integer addConsumablesUnInventory(ConsumablesUnInventoryDto ConsumablesUnInventoryDto); Integer subtractConsumablesUnInventory(ConsumablesUnInventoryDto ConsumablesUnInventoryDto); void exportConsumablesUnInventory(HttpServletResponse response, ConsumablesUnInventoryDto ConsumablesUnInventoryDto); Boolean frozenConsumables(ConsumablesInventoryDto ConsumablesInventoryDto); Boolean thawConsumables(ConsumablesInventoryDto ConsumablesInventoryDto); }