1
Administrator
1 天以前 c003a346617235b50463fad3e9f9f95298a167c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.acs.conveyor.core.model;
 
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class SafeSignal implements Serializable {
    //是数组所在位置,就是第几个出库口或者第几个入库口
    private Integer index;
    //是写0还是1
    private Boolean value;
    //代表写在交互1还是2
    private Boolean flag;
 
 
    public SafeSignal(Integer index, Boolean value, Boolean flag) {
        this.index = index;
        this.value = value;
        this.flag = flag;
    }
}