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
|
package etelligens.com.foodsafety.model;
public class TempDetailsModal {
int action_id;
String action_low;
String action_high;
public int getAction_id() {
return action_id;
}
public void setAction_id(int action_id) {
this.action_id = action_id;
}
public String getAction_low() {
return action_low;
}
public void setAction_low(String action_low) {
this.action_low = action_low;
}
public String getAction_high() {
return action_high;
}
public void setAction_high(String action_high) {
this.action_high = action_high;
}
}
|