RobotView.java
810 Bytes
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
39
40
41
42
43
44
45
46
package com.huaheng.api.wcs.domain;
import lombok.Data;
/***
* @author tongzonghao
*/
@Data
public class RobotView {
private String taskNo;
private String area;
private String containerCode;
private String port;
/**
* boxType : 0:小型货物垛型
* boxType : 1:大型货物垛型
*/
private Integer stackType;
/**
* operator : 0:取
* operator : 1:放
*/
private int operator;
/**
* 来源托盘,起点 1左,2中,3右
*/
private int formPallet;
/**
* 来源位置
*/
private int formPosition;
/**
* 去向托盘,终点 1左,2中,3右
*/
private int toPallet;
/**
* 去向位置
*/
private int toPosition;
private int state;
private int totalQty;
}