add
gdg
2020-10-30 9222b2db700cd25e46b67c2a3c05fffd3817cc64
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
package com.nanometer.smartlab.entity;
 
import com.nanometer.smartlab.entity.enumtype.ApplyStatus;
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
/**
 * Created by johnny on 17/11/23.
 */
public class OpeOrder implements Serializable {
 
    private String id;
    private String orderCode;
    private String orderName;
    private ApplyStatus status;
    private Timestamp createTime;
    private Timestamp updateTime;
    private ValidFlag validFlag;
    private String memo;
    private String consigneeUserId;
    private String orderUserId;
    private Timestamp arrivalTime;
    private String orderUserName;
    private String consigneeUserName;
    
    private String supplyId;
    
    private String supplyName;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getOrderCode() {
        return orderCode;
    }
 
    public void setOrderCode(String orderCode) {
        this.orderCode = orderCode;
    }
 
    public String getOrderName() {
        return orderName;
    }
 
    public void setOrderName(String orderName) {
        this.orderName = orderName;
    }
 
    public ApplyStatus getStatus() {
        return status;
    }
 
    public void setStatus(ApplyStatus status) {
        this.status = status;
    }
 
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
 
    public Timestamp getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
 
    public ValidFlag getValidFlag() {
        return validFlag;
    }
 
    public void setValidFlag(ValidFlag validFlag) {
        this.validFlag = validFlag;
    }
 
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
 
    public String getConsigneeUserId() {
        return consigneeUserId;
    }
 
    public void setConsigneeUserId(String consigneeUserId) {
        this.consigneeUserId = consigneeUserId;
    }
 
    public String getOrderUserId() {
        return orderUserId;
    }
 
    public void setOrderUserId(String orderUserId) {
        this.orderUserId = orderUserId;
    }
 
    public Timestamp getArrivalTime() {
        return arrivalTime;
    }
 
    public void setArrivalTime(Timestamp arrivalTime) {
        this.arrivalTime = arrivalTime;
    }
 
    public String getOrderUserName() {
        return orderUserName;
    }
 
    public void setOrderUserName(String orderUserName) {
        this.orderUserName = orderUserName;
    }
 
    public String getConsigneeUserName() {
        return consigneeUserName;
    }
 
    public void setConsigneeUserName(String consigneeUserName) {
        this.consigneeUserName = consigneeUserName;
    }
 
    public String getSupplyId() {
        return supplyId;
    }
 
    public void setSupplyId(String supplyId) {
        this.supplyId = supplyId;
    }
 
    public String getSupplyName() {
        return supplyName;
    }
 
    public void setSupplyName(String supplyName) {
        this.supplyName = supplyName;
    }
    
}