| | |
| | | package com.mes.workstation.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.mes.engineering.entity.Engineering; |
| | | import com.mes.uppattenusage.entity.UpPattenUsage; |
| | | import com.mes.workstation.entity.UpWorkSequence; |
| | | import com.mes.workstation.entity.UpWorkstation; |
| | | |
| | |
| | | |
| | | |
| | | |
| | | //判断优先吸片位置后发送出片任务 |
| | | UpWorkSequence selectPriority(); |
| | | |
| | | //查询正在进行的工程 |
| | | //判断优先吸片玻璃 |
| | | UpPattenUsage selectPriority(Engineering engineering); |
| | | //查询正在进行的单片信息 |
| | | UpWorkstation selectworkstation(UpPattenUsage upPattenUsage); |
| | | //减少工位数量 |
| | | void reduceWorkstationNumber(UpWorkstation upwork); |
| | | |
| | | |
| | | /** |