ConfirmHeaderModel.java
1.75 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
package com.huaheng.api.SSP.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huaheng.framework.web.domain.BaseEntity;
import java.io.Serializable;
public class ConfirmHeaderModel extends BaseEntity implements Serializable {
private String cubeCode;
@JsonProperty(value = "Id")
private String Id;
private int orderHeaderId;
private String orderCode;
private String orderType;
private String warehouseCode;
private String fDatetime;
private String cDatetime;
public String getfDatetime() {
return fDatetime;
}
public void setfDatetime(String fDatetime) {
this.fDatetime = fDatetime;
}
public String getcDatetime() {
return cDatetime;
}
public void setcDatetime(String cDatetime) {
this.cDatetime = cDatetime;
}
public String getCubeCode() {
return cubeCode;
}
public void setCubeCode(String cubeCode) {
this.cubeCode = cubeCode;
}
public String getId() {
return Id;
}
public void setId(String id) {
this.Id = id;
}
public int getOrderHeaderId() {
return orderHeaderId;
}
public void setOrderHeaderId(int orderHeaderId) {
this.orderHeaderId = orderHeaderId;
}
public String getOrderCode() {
return orderCode;
}
public void setOrderCode(String orderCode) {
this.orderCode = orderCode;
}
public String getOrderType() {
return orderType;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
}
public String getWarehouseCode() {
return warehouseCode;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
}