|
@@ -0,0 +1,60 @@
|
|
|
|
|
+package com.happy.Model.Travel;
|
|
|
|
|
+
|
|
|
|
|
+// 游客总量-----今日流入
|
|
|
|
|
+public class TravelT {
|
|
|
|
|
+
|
|
|
|
|
+ public Integer id;
|
|
|
|
|
+ public String dateTime;
|
|
|
|
|
+ public String inCount;
|
|
|
|
|
+ public String place;
|
|
|
|
|
+ public String dateT;
|
|
|
|
|
+ public String inCount_increase;
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getId() {
|
|
|
|
|
+ return id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setId(Integer id) {
|
|
|
|
|
+ this.id = id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getDateTime() {
|
|
|
|
|
+ return dateTime;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setDateTime(String dateTime) {
|
|
|
|
|
+ this.dateTime = dateTime;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getInCount() {
|
|
|
|
|
+ return inCount;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setInCount(String inCount) {
|
|
|
|
|
+ this.inCount = inCount;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getPlace() {
|
|
|
|
|
+ return place;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPlace(String place) {
|
|
|
|
|
+ this.place = place;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getDateT() {
|
|
|
|
|
+ return dateT;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setDateT(String dateT) {
|
|
|
|
|
+ this.dateT = dateT;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getInCount_increase() {
|
|
|
|
|
+ return inCount_increase;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setInCount_increase(String inCount_increase) {
|
|
|
|
|
+ this.inCount_increase = inCount_increase;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|