| | |
| | | package com.zy.asrs.service; |
| | | |
| | | import com.core.common.R; |
| | | import com.zy.asrs.entity.digitaltwin.*; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface DigitalTwinService { |
| | | |
| | |
| | | * @param overDayNum |
| | | * @param pageIndex |
| | | * @param pageSize |
| | | * @param condition 搜索条件 |
| | | * @return |
| | | */ |
| | | List<DtDetainMatVo> recentDetainMat(String areaId, Integer overDayNum, Integer pageIndex, Integer pageSize); |
| | | List<DtDetainMatVo> recentDetainMat(String areaId, Integer overDayNum, Integer pageIndex, Integer pageSize, String condition); |
| | | |
| | | /** |
| | | * 查询库存和库位详细信息 |
| | |
| | | * |
| | | */ |
| | | void locNumCount(); |
| | | |
| | | DtEquipmentVo equipment(String areaId); |
| | | |
| | | /** |
| | | * 查询所有库位状态和物料-二机床信息化数字孪生用 |
| | | */ |
| | | List<AllLocationsVo> getAllLocations(); |
| | | |
| | | List<Map<String, Object>> getLocalDetal(); |
| | | } |