|
@@ -0,0 +1,348 @@
|
|
|
|
|
+package com.happy.Model;
|
|
|
|
|
+
|
|
|
|
|
+// 用户扫码数据
|
|
|
|
|
+public class User {
|
|
|
|
|
+
|
|
|
|
|
+ public Integer id;
|
|
|
|
|
+ public String uuid;
|
|
|
|
|
+ public String sm_place;
|
|
|
|
|
+ public String protect_type;
|
|
|
|
|
+ public String sm_color;
|
|
|
|
|
+ public String sm_type;
|
|
|
|
|
+ public String sm_time;
|
|
|
|
|
+ public String sm_date;
|
|
|
|
|
+ public String sm_name;
|
|
|
|
|
+ public String sm_gender;
|
|
|
|
|
+ public String sm_age;
|
|
|
|
|
+ public String sm_from;
|
|
|
|
|
+ public String sm_phone;
|
|
|
|
|
+ public String sm_card;
|
|
|
|
|
+ public String handler_unit;
|
|
|
|
|
+ public String handler_type;
|
|
|
|
|
+ public String trace_before;
|
|
|
|
|
+ public String trace_after;
|
|
|
|
|
+ public String car_number;
|
|
|
|
|
+ public String jingwei;
|
|
|
|
|
+ public String handler_state;
|
|
|
|
|
+ public String jingwei_place;
|
|
|
|
|
+ public String place_type;
|
|
|
|
|
+ public String ishot;
|
|
|
|
|
+ public String iskey;
|
|
|
|
|
+ public String istoken;
|
|
|
|
|
+ public String istb;
|
|
|
|
|
+ public String handler_state2;
|
|
|
|
|
+ public String sm_month;
|
|
|
|
|
+ public String handler_message;
|
|
|
|
|
+ public String message_time;
|
|
|
|
|
+ public String handler_time;
|
|
|
|
|
+ public double handler_duration;
|
|
|
|
|
+ public String hotel;
|
|
|
|
|
+ public String town;
|
|
|
|
|
+ public String message_commit;
|
|
|
|
|
+ public Integer isSa;
|
|
|
|
|
+ public String jingwei_y;
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getId() {
|
|
|
|
|
+ return id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setId(Integer id) {
|
|
|
|
|
+ this.id = id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getUuid() {
|
|
|
|
|
+ return uuid;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setUuid(String uuid) {
|
|
|
|
|
+ this.uuid = uuid;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_place() {
|
|
|
|
|
+ return sm_place;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_place(String sm_place) {
|
|
|
|
|
+ this.sm_place = sm_place;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getProtect_type() {
|
|
|
|
|
+ return protect_type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setProtect_type(String protect_type) {
|
|
|
|
|
+ this.protect_type = protect_type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_color() {
|
|
|
|
|
+ return sm_color;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_color(String sm_color) {
|
|
|
|
|
+ this.sm_color = sm_color;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_type() {
|
|
|
|
|
+ return sm_type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_type(String sm_type) {
|
|
|
|
|
+ this.sm_type = sm_type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_time() {
|
|
|
|
|
+ return sm_time;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_time(String sm_time) {
|
|
|
|
|
+ this.sm_time = sm_time;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_date() {
|
|
|
|
|
+ return sm_date;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_date(String sm_date) {
|
|
|
|
|
+ this.sm_date = sm_date;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_name() {
|
|
|
|
|
+ return sm_name;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_name(String sm_name) {
|
|
|
|
|
+ this.sm_name = sm_name;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_gender() {
|
|
|
|
|
+ return sm_gender;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_gender(String sm_gender) {
|
|
|
|
|
+ this.sm_gender = sm_gender;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_age() {
|
|
|
|
|
+ return sm_age;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_age(String sm_age) {
|
|
|
|
|
+ this.sm_age = sm_age;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_from() {
|
|
|
|
|
+ return sm_from;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_from(String sm_from) {
|
|
|
|
|
+ this.sm_from = sm_from;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_phone() {
|
|
|
|
|
+ return sm_phone;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_phone(String sm_phone) {
|
|
|
|
|
+ this.sm_phone = sm_phone;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_card() {
|
|
|
|
|
+ return sm_card;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_card(String sm_card) {
|
|
|
|
|
+ this.sm_card = sm_card;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHandler_unit() {
|
|
|
|
|
+ return handler_unit;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHandler_unit(String handler_unit) {
|
|
|
|
|
+ this.handler_unit = handler_unit;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHandler_type() {
|
|
|
|
|
+ return handler_type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHandler_type(String handler_type) {
|
|
|
|
|
+ this.handler_type = handler_type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getTrace_before() {
|
|
|
|
|
+ return trace_before;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setTrace_before(String trace_before) {
|
|
|
|
|
+ this.trace_before = trace_before;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getTrace_after() {
|
|
|
|
|
+ return trace_after;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setTrace_after(String trace_after) {
|
|
|
|
|
+ this.trace_after = trace_after;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getCar_number() {
|
|
|
|
|
+ return car_number;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setCar_number(String car_number) {
|
|
|
|
|
+ this.car_number = car_number;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getJingwei() {
|
|
|
|
|
+ return jingwei;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setJingwei(String jingwei) {
|
|
|
|
|
+ this.jingwei = jingwei;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHandler_state() {
|
|
|
|
|
+ return handler_state;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHandler_state(String handler_state) {
|
|
|
|
|
+ this.handler_state = handler_state;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getJingwei_place() {
|
|
|
|
|
+ return jingwei_place;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setJingwei_place(String jingwei_place) {
|
|
|
|
|
+ this.jingwei_place = jingwei_place;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getPlace_type() {
|
|
|
|
|
+ return place_type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPlace_type(String place_type) {
|
|
|
|
|
+ this.place_type = place_type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getIshot() {
|
|
|
|
|
+ return ishot;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIshot(String ishot) {
|
|
|
|
|
+ this.ishot = ishot;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getIskey() {
|
|
|
|
|
+ return iskey;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIskey(String iskey) {
|
|
|
|
|
+ this.iskey = iskey;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getIstoken() {
|
|
|
|
|
+ return istoken;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIstoken(String istoken) {
|
|
|
|
|
+ this.istoken = istoken;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getIstb() {
|
|
|
|
|
+ return istb;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIstb(String istb) {
|
|
|
|
|
+ this.istb = istb;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHandler_state2() {
|
|
|
|
|
+ return handler_state2;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHandler_state2(String handler_state2) {
|
|
|
|
|
+ this.handler_state2 = handler_state2;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getSm_month() {
|
|
|
|
|
+ return sm_month;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSm_month(String sm_month) {
|
|
|
|
|
+ this.sm_month = sm_month;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHandler_message() {
|
|
|
|
|
+ return handler_message;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHandler_message(String handler_message) {
|
|
|
|
|
+ this.handler_message = handler_message;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getMessage_time() {
|
|
|
|
|
+ return message_time;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMessage_time(String message_time) {
|
|
|
|
|
+ this.message_time = message_time;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHandler_time() {
|
|
|
|
|
+ return handler_time;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHandler_time(String handler_time) {
|
|
|
|
|
+ this.handler_time = handler_time;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public double getHandler_duration() {
|
|
|
|
|
+ return handler_duration;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHandler_duration(double handler_duration) {
|
|
|
|
|
+ this.handler_duration = handler_duration;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHotel() {
|
|
|
|
|
+ return hotel;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHotel(String hotel) {
|
|
|
|
|
+ this.hotel = hotel;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getTown() {
|
|
|
|
|
+ return town;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setTown(String town) {
|
|
|
|
|
+ this.town = town;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getMessage_commit() {
|
|
|
|
|
+ return message_commit;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMessage_commit(String message_commit) {
|
|
|
|
|
+ this.message_commit = message_commit;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getIsSa() {
|
|
|
|
|
+ return isSa;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setIsSa(Integer isSa) {
|
|
|
|
|
+ this.isSa = isSa;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getJingwei_y() {
|
|
|
|
|
+ return jingwei_y;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setJingwei_y(String jingwei_y) {
|
|
|
|
|
+ this.jingwei_y = jingwei_y;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|