| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.mes.downglassinfo.entity.DownGlassInfo; |
| | | import com.mes.downglassinfo.entity.request.DownGlassInfoRequest; |
| | | import com.mes.downworkstation.entity.DownWorkstation; |
| | | import com.mes.downworkstation.entity.dto.DownGlassInfoDTO; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface DownGlassInfoService extends IService<DownGlassInfo> { |
| | | |
| | |
| | | * @param isDownload true/false |
| | | * @return |
| | | */ |
| | | List<DownGlassInfoDTO> queryWorkStationIsIn(Boolean isDownload); |
| | | List<DownGlassInfoDTO> queryWorkStationIsIn(List<Integer> workList, Boolean isDownload); |
| | | |
| | | /** |
| | | * 获取指定架子已绑定流程卡的架子未落玻璃的数据信息 |
| | | * |
| | | * @param workList 指定的架子号 |
| | | * @return |
| | | */ |
| | | List<DownGlassInfoDTO> queryWorkStationFlowCard(List<Integer> workList); |
| | | |
| | | /** |
| | | * 生成出片任务 |
| | |
| | | * @return |
| | | */ |
| | | boolean generateOutGlassTask(String glassId); |
| | | |
| | | /** |
| | | * 设置架子定时任务查询条件 |
| | | * |
| | | * @param request |
| | | * @return |
| | | */ |
| | | String setDownGlassInfoRequest(DownGlassInfoRequest request); |
| | | |
| | | List<Map<String, List<Map<String, Object>>>> downGlassPrint(DownGlassInfo downGlassInfo); |
| | | |
| | | List<DownWorkstation> queryWorkStationIsFull(); |
| | | |
| | | |
| | | } |