SrmReceipt.java
2.52 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package com.huaheng.api.srm.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class SrmReceipt {
/**
* 组织编码
* 01 昆山华恒
* 02 长沙
* 03 徐州
* 04 昆山光腾
*/
@JsonProperty("WorkPoint")
private String WorkPoint;
/**
* 入库单号
*/
@JsonProperty("RD01Code")
private String RD01Code;
/**
* 入库单行号
*/
@JsonProperty("RD01Row")
private String RD01Row;
/**
* 入库类型(委外、普通入库)
* 类型(1:委外,2:正常采购)
*/
@JsonProperty("RD01Type")
private String RD01Type;
/**
* 到货单号
*/
@JsonProperty("DNCode")
private String DNCode;
/**
* 到货单号
*/
@JsonProperty("DNRow")
private String DNRow;
/**
* 送货单号
*/
@JsonProperty("ASNCode")
private String ASNCode;
/**
* 送货行号
*/
@JsonProperty("ASNRow")
private String ASNRow;
/**
* 采购订单号
*/
@JsonProperty("POCode")
private String POCode;
/**
* 采购订单行号
*/
@JsonProperty("PORow")
private String PORow;
/**
* 原币无税金额
*/
@JsonProperty("iOriMoney")
private BigDecimal iOriMoney=new BigDecimal(0);
/**
*原币税额
*/
@JsonProperty("iOriTaxPrice")
private BigDecimal iOriTaxPrice=new BigDecimal(0);
/**
* 原币价税合计
*/
@JsonProperty("ioriSum")
private BigDecimal ioriSum=new BigDecimal(0);
/**
* 供应商代码
*/
@JsonProperty("cVenCode")
private String cVenCode;
/**
* 物料代码
*/
@JsonProperty("cInvCode")
private String cInvCode;
/**
* 入库数量
*/
@JsonProperty("Quantity")
private BigDecimal Quantity;
/**
* 创建人
*/
@JsonProperty("CreateUser")
private String CreateUser;
/**
* 创建日期
*/
@JsonProperty("CreateDate")
private String CreateDate;
// /**
// * 完成人
// */
// @JsonProperty("CloseUser")
// private String CloseUser;
// /**
// * 完成日期
// */
// @JsonProperty("CloseDate")
// private String CloseDate;
// /**
// * 删除人
// */
// @JsonProperty("DeleteUser")
// private String DeleteUser;
// /**
// * 删除日期
// */
// @JsonProperty("DeleteDate")
// private Date DeleteDate;
}