TempLogFrontEndModal.java
1.58 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
package etelligens.com.foodsafety.model;
public class TempLogFrontEndModal {
private int id;
private int outlet_id;
private int product_id;
private String name;
private String temprature;
private String temp_type;
private int slot_id;
private int user_id;
private String image;
public String getTemp_type() {
return temp_type;
}
public void setTemp_type(String temp_type) {
this.temp_type = temp_type;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getTemprature() {
return temprature;
}
public void setTemprature(String temprature) {
this.temprature = temprature;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getOutlet_id() {
return outlet_id;
}
public void setOutlet_id(int outlet_id) {
this.outlet_id = outlet_id;
}
public int getProduct_id() {
return product_id;
}
public void setProduct_id(int product_id) {
this.product_id = product_id;
}
public int getSlot_id() {
return slot_id;
}
public void setSlot_id(int slot_id) {
this.slot_id = slot_id;
}
public int getUser_id() {
return user_id;
}
public void setUser_id(int user_id) {
this.user_id = user_id;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
}