StockDomain.java
1.1 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
package com.huaheng.pc.tool.verify.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
/**
* @author lty
*/
@Data
public class StockDomain {
/**
*主表id
*/
private Integer id;
/**
*主表货位
*/
private String locationCode;
/**
*主表容器
*/
private String containerCode;
/**
*主表容器状态
*/
private String containerStatus;
/**
*总数量
*/
private BigDecimal totalQty;
/**
* 子库位
*/
private String localContain;
/**
*子在库数量
*/
private Integer zQty=0;
/**
*子在执行数量
*/
private Integer taskQty=0;
/**
*异常原因
*/
private String reason="正常";
/**
*有没有没完成的任务
*/
private String task="没有任务";
}