ErpReceiptDetail.java
1.92 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package com.huaheng.api.erp.domain;
import java.math.BigDecimal;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @author 游杰
*/
@Data
public class ErpReceiptDetail {
/**
* 物料编码
*/
@ApiModelProperty(value = "物料编码", required = true)
private String materialCode;
/**
* 物料名称
*/
@ApiModelProperty(value = "物料名称", required = true)
private String materialName;
/**
* 物料规格
*/
@ApiModelProperty(value = "物料规格")
private String materialSpec;
/**
* 物料单位
*/
@ApiModelProperty(value = "物料单位")
private String materialUnit;
/**
* 单据数量
*/
@ApiModelProperty(value = "单据数量", required = true)
private BigDecimal qty;
/**
* 库存状况
*/
@ApiModelProperty(value = "库存状况", required = true)
private String inventoryStatus;
/**
* 批次
*/
@ApiModelProperty(value = "批次")
private String batch;
/**
* 批号
*/
@ApiModelProperty(value = "批号")
private String lot;
/**
* 项目号
*/
@ApiModelProperty(value = "项目号")
private String project;
/**
* 工作令
*/
@ApiModelProperty(value = "工作令")
private String mocode;
/**
* 上游单号
*/
@ApiModelProperty(value = "上游单号")
private String referCode;
/**
* 上游明细行号
*/
@ApiModelProperty(value = "上游明细行号")
private String referLineNum;
/**
* 上游erp仓库编码
*/
@ApiModelProperty(value = "上游erp仓库编码")
private String uWarehouseCode;
/**
* 采购项次
*/
@ApiModelProperty(value = "采购项次")
private Integer pmdt002;
/**
* 采购单号
*/
@ApiModelProperty(value = "采购单号")
private String purchaseCode;
}