RobotDomain.java
813 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
47
package com.huaheng.api.acs.domain;
import com.huaheng.common.exception.service.ServiceException;
import com.huaheng.common.utils.StringUtils;
import lombok.Data;
import java.math.BigDecimal;
/***
* 商片二楼机械人码垛入参
*
*/
@Data
public class RobotDomain {
/**
* 容器
*/
private String containerCode;
/**
* 位置
*/
private Integer position;
/**
* 垛型
*/
//
private Integer stackType;
/**
* 子托盘高度
*/
private Integer height;
/**
* 结束标志
*/
private Integer finish;
/**
* 条码
*/
private String allCode;
private Integer boxType;
private Integer stackTypeTotal;
private String materialCode;
private BigDecimal qty;
private String lot;
}