严智鑫
2024-04-17 a35d993ebdd966acb2efecdda15ae048863b81c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.mes.workstation.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.workstation.entity.UpWorkstation;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author zhoush
 * @since 2024-04-07
 */
public interface UpWorkstationService extends IService<UpWorkstation> {
    //PlcParameterObject plcmes=PLCAutoMes.PlcMesObject;
 
    //删除人工搬走的玻璃信息
//    public void deleteGlass(int id);
    //判断是否可以吸片进行任务
 
    //判断优先吸片位置后发送出片任务
    public void selectPriority() ;
 
 
    /**
     * 增加人工输入的工位玻璃信息
     * @param upwork
     */
    void updateGlassMessage(UpWorkstation upwork);
}