f7a13682
“wangming”
项目初始化
|
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
|
package etelligens.com.foodsafety.model;
import java.util.List;
public class ConsolidatedTempModal {
private int id;
private int cat_id;
private int store_id;
private int is_deleted;
private String created_at;
private String updated_at;
private String category_name;
private String description;
private List<SlotsConTempModel> slots;
public List<SlotsConTempModel> getSlots() {
return slots;
}
public void setSlots(List<SlotsConTempModel> slots) {
this.slots = slots;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getCat_id() {
return cat_id;
}
public void setCat_id(int cat_id) {
this.cat_id = cat_id;
}
public int getStore_id() {
return store_id;
}
public void setStore_id(int store_id) {
this.store_id = store_id;
}
public int getIs_deleted() {
return is_deleted;
}
public void setIs_deleted(int is_deleted) {
this.is_deleted = is_deleted;
}
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 String getCategory_name() {
return category_name;
}
public void setCategory_name(String category_name) {
this.category_name = category_name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
|