自动化立体仓库 - WMS系统
zhang
2025-09-25 d093cdb0c7a57c09da5eb5d176f9e9e71820fece
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
31
32
33
34
35
36
37
38
package com.zy.asrs.entity.result;
 
import lombok.Data;
 
@Data
public class RobotTaskMessage {
    private int currentSeq;
    private Extra extra;
    private String robotTaskCode;
    private String singleRobotCode;
 
    @Data
    public static class Extra {
        private int async;
        private Values values;
    }
 
    @Data
    public static class Values {
        private String mapCode;
        private String slotCategory;
        private String slotCode;
        private String slotName;
        private double x;
        private double y;
        private String method;
        private String carrierCategory;
        private int carrierType;
        private String carrierCode;
        private int pileCount;
        private String zoneCode;
        private String amrCategory;
        private String amrType;
        private String amrCode;
        private String carrierName;
        private int layerNo;
    }
}