-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDispatchItem.java
More file actions
151 lines (117 loc) · 3.6 KB
/
DispatchItem.java
File metadata and controls
151 lines (117 loc) · 3.6 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package com.cats.analytics.domain;
import org.springframework.data.annotation.Id;
import java.util.Date;
/**
* Created by User on 10/12/2017.
*/
public class DispatchItem {
@Id
private String id;
private int dispatch_id;
private CommodityCategory commodity_category;
private Commodity commodity;
private float quantity;
private Project project;
private Organization organization;
private int created_by;
private int modified_by;
private Boolean deleted;
private Date deleted_at;
private Date created_at;
private Date updated_at;
public DispatchItem() {
}
public DispatchItem(String id, int dispatch_id, CommodityCategory commodity_category, Commodity commodity, float quantity, Project project, Organization organization, int created_by, int modified_by, Boolean deleted, Date deleted_at, Date created_at, Date updated_at) {
this.id = id;
this.dispatch_id = dispatch_id;
this.commodity_category = commodity_category;
this.commodity = commodity;
this.quantity = quantity;
this.project = project;
this.organization = organization;
this.created_by = created_by;
this.modified_by = modified_by;
this.deleted = deleted;
this.deleted_at = deleted_at;
this.created_at = created_at;
this.updated_at = updated_at;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public int getDispatch_id() {
return dispatch_id;
}
public void setDispatch_id(int dispatch_id) {
this.dispatch_id = dispatch_id;
}
public CommodityCategory getCommodity_category() {
return commodity_category;
}
public void setCommodity_category(CommodityCategory commodity_category) {
this.commodity_category = commodity_category;
}
public Commodity getCommodity() {
return commodity;
}
public void setCommodity(Commodity commodity) {
this.commodity = commodity;
}
public float getQuantity() {
return quantity;
}
public void setQuantity(float quantity) {
this.quantity = quantity;
}
public Project getProject() {
return project;
}
public void setProject(Project project) {
this.project = project;
}
public Organization getOrganization() {
return organization;
}
public void setOrganization(Organization organization) {
this.organization = organization;
}
public int getCreated_by() {
return created_by;
}
public void setCreated_by(int created_by) {
this.created_by = created_by;
}
public int getModified_by() {
return modified_by;
}
public void setModified_by(int modified_by) {
this.modified_by = modified_by;
}
public Boolean getDeleted() {
return deleted;
}
public void setDeleted(Boolean deleted) {
this.deleted = deleted;
}
public Date getDeleted_at() {
return deleted_at;
}
public void setDeleted_at(Date deleted_at) {
this.deleted_at = deleted_at;
}
public Date getCreated_at() {
return created_at;
}
public void setCreated_at(Date created_at) {
this.created_at = created_at;
}
public Date getUpdated_at() {
return updated_at;
}
public void setUpdated_at(Date updated_at) {
this.updated_at = updated_at;
}
}