| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | * @since 2024-04-07 |
| | | */ |
| | | public interface UpWorkstationService extends IService<UpWorkstation> { |
| | | //PlcParameterObject plcmes=PLCAutoMes.PlcMesObject; |
| | | |
| | | |
| | | |
| | | //判断优先吸片玻璃 |
| | | /** |
| | | * 判断优先吸片位置 |
| | | * @return UpPattenUsage |
| | | */ |
| | | UpPattenUsage selectPriority(Engineering engineering); |
| | | //查询正在进行的单片信息 |
| | | UpWorkstation selectworkstation(UpPattenUsage upPattenUsage); |
| | | //减少工位数量 |
| | | void reduceWorkstationNumber(UpWorkstation upwork); |
| | | |
| | | |
| | | /** |
| | | * 查询正在进行的单片信息 |
| | | * @return UpWorkstation |
| | | */ |
| | | UpWorkstation selectWorkstation(UpPattenUsage upPattenUsage); |
| | | /** |
| | | * 减少工位数量 |
| | | */ |
| | | void reduceWorkstationNumber(Integer upworkId); |
| | | /** |
| | | * 增加人工输入的工位玻璃信息 |
| | | * |
| | | * @param upwork |
| | | */ |
| | | //修改工位表增加玻璃信息或者删除玻璃信息 |
| | | void updateGlassMessage(UpWorkstation upwork); |
| | | |
| | | |
| | | String updateMesInkageLoad(short inKageWord); |
| | | } |
| | | |