Blame view

footsafety/app/src/main/java/etelligens/com/foodsafety/model/LabelImages.java 1.79 KB
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
  package etelligens.com.foodsafety.model;
  
  public class LabelImages {
      private int id;
      private int option_id;
      private int outlet_id;
      private int is_active;
      private String value;
      private String product_id;
      private String type;
      private int status;
      private String image;
      private String option_value_type;
  
  
      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 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 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;
      }
  
      public String getImage() {
          return image;
      }
  
      public void setImage(String image) {
          this.image = image;
      }
  
      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;
      }
  }