| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.system.dto.asset.AssetInventoryTaskDTO; |
| | | import com.ruoyi.system.dto.asset.AssetInventoryTaskItemDTO; |
| | | import com.ruoyi.system.dto.asset.AssetInventoryTaskItemUpdateDTO; |
| | | import com.ruoyi.system.dto.asset.AssetInventoryUserUpdateDTO; |
| | | import com.ruoyi.system.model.AssetInventoryTask; |
| | | import com.ruoyi.system.query.AssertInventoryQuery; |
| | |
| | | * @param dtoList |
| | | */ |
| | | void handleResult(List<AssetInventoryTaskItemDTO> dtoList); |
| | | |
| | | /** |
| | | * 取消盘点 |
| | | * @param id |
| | | */ |
| | | boolean cancel(Integer id); |
| | | |
| | | /** |
| | | * 保存盘点 |
| | | * @param dtoList |
| | | */ |
| | | void saveInventory(List<AssetInventoryTaskItemUpdateDTO> dtoList); |
| | | } |