|
|
@@ -0,0 +1,68 @@
|
|
|
+package com.happy.Model.Manager;
|
|
|
+
|
|
|
+public class DanweiDetail {
|
|
|
+
|
|
|
+ public Integer id;
|
|
|
+ public String placef;
|
|
|
+ public String places;
|
|
|
+ public String tj_date;
|
|
|
+ public int red_num;
|
|
|
+ public int yellow_num;
|
|
|
+ public int green_num;
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlacef() {
|
|
|
+ return placef;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlacef(String placef) {
|
|
|
+ this.placef = placef;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPlaces() {
|
|
|
+ return places;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlaces(String places) {
|
|
|
+ this.places = places;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTj_date() {
|
|
|
+ return tj_date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTj_date(String tj_date) {
|
|
|
+ this.tj_date = tj_date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getRed_num() {
|
|
|
+ return red_num;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRed_num(int red_num) {
|
|
|
+ this.red_num = red_num;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getYellow_num() {
|
|
|
+ return yellow_num;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setYellow_num(int yellow_num) {
|
|
|
+ this.yellow_num = yellow_num;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getGreen_num() {
|
|
|
+ return green_num;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGreen_num(int green_num) {
|
|
|
+ this.green_num = green_num;
|
|
|
+ }
|
|
|
+}
|