| | |
| | | package com.ruoyi.business.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.business.dto.OfficialInventoryDto; |
| | | import com.ruoyi.business.dto.PendingInventoryDto; |
| | | import com.ruoyi.business.entity.InventorySummary; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @param officialInventoryDto 正式库存 |
| | | */ |
| | | int updateInventory(PendingInventoryDto pendingInventoryDto, OfficialInventoryDto officialInventoryDto); |
| | | |
| | | /** |
| | | * 批量更新库存 |
| | | * @param ids 库存id |
| | | * @return |
| | | */ |
| | | int updateInventorySummary(List<Long> ids); |
| | | } |