Merge branch 'feature/v1.0.0' of gitlab.zhidaoauto.com:ecos/yycp-service/Launcher into feature/v1.0.0

This commit is contained in:
wangcongtao
2020-01-08 15:15:17 +08:00
13 changed files with 161 additions and 13 deletions

View File

@@ -3,8 +3,10 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MarkerActivitiesScope {
public class MarkerActivitiesScope implements Serializable {
@Expose
private String content;
@@ -27,4 +29,11 @@ public class MarkerActivitiesScope {
this.isCheck = isCheck;
}
@Override
public String toString() {
return "MarkerActivitiesScope{" +
"content='" + content + '\'' +
", isCheck=" + isCheck +
'}';
}
}

View File

@@ -3,8 +3,10 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MarkerCarChat {
public class MarkerCarChat implements Serializable {
@Expose
private MarkerLocation location;
@@ -37,4 +39,12 @@ public class MarkerCarChat {
this.userInfo = userInfo;
}
@Override
public String toString() {
return "MarkerCarChat{" +
"location=" + location +
", type='" + type + '\'' +
", userInfo=" + userInfo +
'}';
}
}

View File

@@ -3,8 +3,10 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MarkerCarInfo {
public class MarkerCarInfo implements Serializable {
@Expose
private String carBrandLogoUrl;
@@ -27,4 +29,11 @@ public class MarkerCarInfo {
this.carTypeName = carTypeName;
}
@Override
public String toString() {
return "MarkerCarInfo{" +
"carBrandLogoUrl='" + carBrandLogoUrl + '\'' +
", carTypeName='" + carTypeName + '\'' +
'}';
}
}

View File

@@ -1,11 +1,12 @@
package com.mogo.module.service.entity;
import java.io.Serializable;
import java.util.List;
import com.google.gson.annotations.Expose;
@SuppressWarnings("unused")
public class MarkerCardResult {
public class MarkerCardResult implements Serializable {
@Expose
private List<MarkerCarChat> carChat;
@@ -48,4 +49,13 @@ public class MarkerCardResult {
this.shareMusic = shareMusic;
}
@Override
public String toString() {
return "MarkerCardResult{" +
"carChat=" + carChat +
", exploreWay=" + exploreWay +
", onlineCar=" + onlineCar +
", shareMusic=" + shareMusic +
'}';
}
}

View File

@@ -3,8 +3,10 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MarkerDynamicData {
public class MarkerDynamicData implements Serializable {
@Expose
private Long id;
@@ -37,4 +39,12 @@ public class MarkerDynamicData {
this.type = type;
}
@Override
public String toString() {
return "MarkerDynamicData{" +
"id=" + id +
", name='" + name + '\'' +
", type=" + type +
'}';
}
}

View File

@@ -1,11 +1,12 @@
package com.mogo.module.service.entity;
import java.io.Serializable;
import java.util.List;
import com.google.gson.annotations.Expose;
@SuppressWarnings("unused")
public class MarkerExploreWay {
public class MarkerExploreWay implements Serializable {
@Expose
private String addr;
@@ -128,4 +129,21 @@ public class MarkerExploreWay {
this.userInfo = userInfo;
}
@Override
public String toString() {
return "MarkerExploreWay{" +
"addr='" + addr + '\'' +
", canLive=" + canLive +
", cityName='" + cityName + '\'' +
", direction=" + direction +
", distance=" + distance +
", fileType=" + fileType +
", generateTime=" + generateTime +
", items=" + items +
", location=" + location +
", sn='" + sn + '\'' +
", type='" + type + '\'' +
", userInfo=" + userInfo +
'}';
}
}

View File

@@ -3,8 +3,10 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MarkerExploreWayItem {
public class MarkerExploreWayItem implements Serializable {
@Expose
private String thumbnail;
@@ -27,4 +29,11 @@ public class MarkerExploreWayItem {
this.url = url;
}
@Override
public String toString() {
return "MarkerExploreWayItem{" +
"thumbnail='" + thumbnail + '\'' +
", url='" + url + '\'' +
'}';
}
}

View File

@@ -3,8 +3,10 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MarkerHobbyDatum {
public class MarkerHobbyDatum implements Serializable {
@Expose
private String content;
@@ -27,4 +29,11 @@ public class MarkerHobbyDatum {
this.isCheck = isCheck;
}
@Override
public String toString() {
return "MarkerHobbyDatum{" +
"content='" + content + '\'' +
", isCheck=" + isCheck +
'}';
}
}

View File

@@ -3,8 +3,10 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MarkerLocation {
public class MarkerLocation implements Serializable {
@Expose
private String address;
@@ -47,4 +49,13 @@ public class MarkerLocation {
this.lon = lon;
}
@Override
public String toString() {
return "MarkerLocation{" +
"address='" + address + '\'' +
", angle=" + angle +
", lat=" + lat +
", lon=" + lon +
'}';
}
}

View File

@@ -1,11 +1,12 @@
package com.mogo.module.service.entity;
import java.io.Serializable;
import java.util.List;
import com.google.gson.annotations.Expose;
@SuppressWarnings("unused")
public class MarkerOnlineCar {
public class MarkerOnlineCar implements Serializable {
@Expose
private List<MarkerActivitiesScope> activitiesScope;
@@ -98,4 +99,18 @@ public class MarkerOnlineCar {
this.userInfo = userInfo;
}
@Override
public String toString() {
return "MarkerOnlineCar{" +
"activitiesScope=" + activitiesScope +
", carInfo=" + carInfo +
", compatibility='" + compatibility + '\'' +
", dynamicData=" + dynamicData +
", hobbyData=" + hobbyData +
", isFocus=" + isFocus +
", location=" + location +
", type='" + type + '\'' +
", userInfo=" + userInfo +
'}';
}
}

View File

@@ -3,8 +3,10 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MarkerResponse {
public class MarkerResponse implements Serializable {
@Expose
private Long code;
@@ -47,4 +49,13 @@ public class MarkerResponse {
this.sign = sign;
}
@Override
public String toString() {
return "MarkerResponse{" +
"code=" + code +
", msg='" + msg + '\'' +
", result=" + result +
", sign='" + sign + '\'' +
'}';
}
}

View File

@@ -3,8 +3,10 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MarkerShareMusic {
public class MarkerShareMusic implements Serializable {
@Expose
private Long id;
@@ -77,4 +79,16 @@ public class MarkerShareMusic {
this.userInfo = userInfo;
}
@Override
public String toString() {
return "MarkerShareMusic{" +
"id=" + id +
", likeNumber=" + likeNumber +
", location=" + location +
", musicName='" + musicName + '\'' +
", shareContentText='" + shareContentText + '\'' +
", type='" + type + '\'' +
", userInfo=" + userInfo +
'}';
}
}

View File

@@ -3,10 +3,11 @@ package com.mogo.module.service.entity;
import com.google.gson.annotations.Expose;
import java.io.Serializable;
import java.util.Calendar;
@SuppressWarnings("unused")
public class MarkerUserInfo {
public class MarkerUserInfo implements Serializable {
@Expose
private int age;
@@ -115,4 +116,16 @@ public class MarkerUserInfo {
this.userName = userName;
}
@Override
public String toString() {
return "MarkerUserInfo{" +
"age=" + age +
", gender='" + gender + '\'' +
", sn='" + sn + '\'' +
", userHead='" + userHead + '\'' +
", userId=" + userId +
", userName='" + userName + '\'' +
'}';
}
}