TaskHeaderVO.java
734 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
48
package com.huaheng.api.tv.domain;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class TaskHeaderVO {
private Integer id;
private Integer type;
private String containerCode;
private String sourceLocation;
private String destinationLocation;
/**
* 总数量
*/
private BigDecimal qty;
// private Integer firstStatus;
// private Integer lastStatus;
private Integer status;
private Date created;
private String createdBy;
private Date lastUpdated;
private String lkStation;
private String orderCode;
private String orderName;
private String level;
private String batch;
private String color;
}