BigScreenTask.java
1.26 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.huaheng.api.general.domain;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
/**
* @author yiwenpeng
* @date 2022/9/7 09:42
*/
@Data
public class BigScreenTask {
private Integer taskId;
/**
* agvID
*/
private int agvTaskId;
/**
* 任务类型
*/
private String taskType;
/**
* 容器号
*/
private String containerCode;
/**
* 来源库位
*/
private String fromLocation;
/**
* /去向库位
*/
private String toLocation;
/**
* 任务状态
*/
private String status;
/**
* 物料名称
*/
private String materialName;
/**
* 物料编码
*/
private String materialCode;
/**
* 物料规格
*/
private String materialSpec;
/**
* 物料单位
*/
private String materialUnit;
/**
* 数量
*/
private BigDecimal qty;
/**
* 创建时间
*/
private Date created;
}