package com.zy.core.model;
|
|
import com.zy.core.Slave;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
@EqualsAndHashCode(callSuper = true)
|
@Data
|
public class LiftSlave extends Slave {
|
|
//提升机站点
|
private List<Sta> sta = new ArrayList<>();
|
|
//排
|
private Integer row;
|
|
//列
|
private Integer bay;
|
|
//待机位排-in
|
private Integer standByInRow;
|
|
//待机位列-in
|
private Integer standByInBay;
|
|
//待机位排-out
|
private Integer standByOutRow;
|
|
//待机位列-out
|
private Integer standByOutBay;
|
|
//站点排
|
private Integer staRow;
|
|
//站点列
|
private Integer staBay;
|
|
@Data
|
public static class Sta {
|
|
// 提升机站点号
|
private Integer staNo;
|
|
// 层
|
private Integer lev;
|
|
// 提升机号
|
private Integer liftNo;
|
|
}
|
|
}
|