SlotsConTempModel.java
2.07 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
package etelligens.com.foodsafety.model;
import java.util.List;
public class SlotsConTempModel {
private int id;
private int store_id;
private String name;
private String time_from;
private String time_to;
private String time_format;
private int status;
private String created_at;
private String updated_at;
private int is_deleted;
private List<ProductsConTempModel> products;
public List<ProductsConTempModel> getProducts() {
return products;
}
public void setProducts(List<ProductsConTempModel> products) {
this.products = products;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getStore_id() {
return store_id;
}
public void setStore_id(int store_id) {
this.store_id = store_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getTime_from() {
return time_from;
}
public void setTime_from(String time_from) {
this.time_from = time_from;
}
public String getTime_to() {
return time_to;
}
public void setTime_to(String time_to) {
this.time_to = time_to;
}
public String getTime_format() {
return time_format;
}
public void setTime_format(String time_format) {
this.time_format = time_format;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public String getCreated_at() {
return created_at;
}
public void setCreated_at(String created_at) {
this.created_at = created_at;
}
public String getUpdated_at() {
return updated_at;
}
public void setUpdated_at(String updated_at) {
this.updated_at = updated_at;
}
public int getIs_deleted() {
return is_deleted;
}
public void setIs_deleted(int is_deleted) {
this.is_deleted = is_deleted;
}
}