1
zhangc
2025-04-11 3cba497c498c3833fdc266d99e07bc3c2d16e658
src/main/java/com/zy/core/model/LiftSlave.java
@@ -14,6 +14,24 @@
    //提升机站点
    private List<Sta> sta = new ArrayList<>();
    //排
    private Integer row;
    //列
    private Integer bay;
    //待机位排
    private Integer standByRow;
    //待机位列
    private Integer standByBay;
    //站点排
    private Integer staRow;
    //站点列
    private Integer staBay;
    @Data
    public static class Sta {
@@ -23,6 +41,9 @@
        // 层
        private Integer lev;
        // 提升机号
        private Integer liftNo;
    }
}