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
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 etelligens.com.foodsafety.model;
import org.json.JSONObject;
import java.util.List;
public class OptionValue {
private int id;
private int option_id;
private int outlet_id;
private int is_active;
private int is_deleted;
private int label_option_values_id;
private String value;
private String product_id;
private String type;
private int status;
private String image;
private String option_value_type;
private String created_at;
private String updated_at;
private JSONObject label_images;
private String labelImage;
public String getLabelImage() {
return labelImage;
}
public void setLabelImage(String labelImage) {
this.labelImage = labelImage;
}
public JSONObject getLabel_images() {
return label_images;
}
public void setLabel_images(JSONObject label_images) {
this.label_images = label_images;
}
public int getOutlet_id() {
return outlet_id;
}
public void setOutlet_id(int outlet_id) {
this.outlet_id = outlet_id;
}
public int getIs_active() {
return is_active;
}
public void setIs_active(int is_active) {
this.is_active = is_active;
}
public int getIs_deleted() {
return is_deleted;
}
public void setIs_deleted(int is_deleted) {
this.is_deleted = is_deleted;
}
public int getLabel_option_values_id() {
return label_option_values_id;
}
public void setLabel_option_values_id(int label_option_values_id) {
this.label_option_values_id = label_option_values_id;
}
public String getOption_value_type() {
return option_value_type;
}
public void setOption_value_type(String option_value_type) {
this.option_value_type = option_value_type;
}
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 getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getOption_id() {
return option_id;
}
public void setOption_id(int option_id) {
this.option_id = option_id;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getProduct_id() {
return product_id;
}
public void setProduct_id(String product_id) {
this.product_id = product_id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
}
|