增加了大而全的数据实体

This commit is contained in:
董宏宇
2020-01-06 19:53:07 +08:00
parent 3bbf28838f
commit a42d627370
13 changed files with 733 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
package com.mogo.module.service.entity;
import java.util.List;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MapMarkerCardResult {
@SerializedName("carChat")
private List<MarkerCarChat> mCarChat;
@SerializedName("exploreWay")
private List<MarkerExploreWay> mExploreWay;
@SerializedName("onlineCar")
private List<MarkerOnlineCar> mOnlineCar;
@SerializedName("shareMusic")
private List<MarkerShareMusic> mShareMusic;
public List<MarkerCarChat> getCarChat() {
return mCarChat;
}
public void setCarChat(List<MarkerCarChat> carChat) {
mCarChat = carChat;
}
public List<MarkerExploreWay> getExploreWay() {
return mExploreWay;
}
public void setExploreWay(List<MarkerExploreWay> exploreWay) {
mExploreWay = exploreWay;
}
public List<MarkerOnlineCar> getOnlineCar() {
return mOnlineCar;
}
public void setOnlineCar(List<MarkerOnlineCar> onlineCar) {
mOnlineCar = onlineCar;
}
public List<MarkerShareMusic> getShareMusic() {
return mShareMusic;
}
public void setShareMusic(List<MarkerShareMusic> shareMusic) {
mShareMusic = shareMusic;
}
}

View File

@@ -0,0 +1,50 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MapMarkerResponse {
@SerializedName("code")
private Long mCode;
@SerializedName("msg")
private String mMsg;
@SerializedName("result")
private MapMarkerCardResult mResult;
@SerializedName("sign")
private String mSign;
public Long getCode() {
return mCode;
}
public void setCode(Long code) {
mCode = code;
}
public String getMsg() {
return mMsg;
}
public void setMsg(String msg) {
mMsg = msg;
}
public MapMarkerCardResult getResult() {
return mResult;
}
public void setResult(MapMarkerCardResult result) {
mResult = result;
}
public String getSign() {
return mSign;
}
public void setSign(String sign) {
mSign = sign;
}
}

View File

@@ -0,0 +1,30 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerActivitiesScope {
@SerializedName("content")
private String mContent;
@SerializedName("isCheck")
private Long mIsCheck;
public String getContent() {
return mContent;
}
public void setContent(String content) {
mContent = content;
}
public Long getIsCheck() {
return mIsCheck;
}
public void setIsCheck(Long isCheck) {
mIsCheck = isCheck;
}
}

View File

@@ -0,0 +1,40 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerCarChat {
@SerializedName("location")
private MarkerLocation mLocation;
@SerializedName("type")
private String mType;
@SerializedName("userInfo")
private MarkerUserInfo mUserInfo;
public MarkerLocation getLocation() {
return mLocation;
}
public void setLocation(MarkerLocation location) {
mLocation = location;
}
public String getType() {
return mType;
}
public void setType(String type) {
mType = type;
}
public MarkerUserInfo getUserInfo() {
return mUserInfo;
}
public void setUserInfo(MarkerUserInfo userInfo) {
mUserInfo = userInfo;
}
}

View File

@@ -0,0 +1,30 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerCarInfo {
@SerializedName("carBrandLogoUrl")
private String mCarBrandLogoUrl;
@SerializedName("carTypeName")
private String mCarTypeName;
public String getCarBrandLogoUrl() {
return mCarBrandLogoUrl;
}
public void setCarBrandLogoUrl(String carBrandLogoUrl) {
mCarBrandLogoUrl = carBrandLogoUrl;
}
public String getCarTypeName() {
return mCarTypeName;
}
public void setCarTypeName(String carTypeName) {
mCarTypeName = carTypeName;
}
}

View File

@@ -0,0 +1,40 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerDynamicData {
@SerializedName("id")
private String mId;
@SerializedName("name")
private String mName;
@SerializedName("type")
private Long mType;
public String getId() {
return mId;
}
public void setId(String id) {
mId = id;
}
public String getName() {
return mName;
}
public void setName(String name) {
mName = name;
}
public Long getType() {
return mType;
}
public void setType(Long type) {
mType = type;
}
}

View File

@@ -0,0 +1,131 @@
package com.mogo.module.service.entity;
import java.util.List;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerExploreWay {
@SerializedName("addr")
private String mAddr;
@SerializedName("canLive")
private Long mCanLive;
@SerializedName("cityName")
private String mCityName;
@SerializedName("direction")
private Long mDirection;
@SerializedName("distance")
private Long mDistance;
@SerializedName("fileType")
private Long mFileType;
@SerializedName("generateTime")
private Long mGenerateTime;
@SerializedName("items")
private List<MarkerExploreWayItem> mItems;
@SerializedName("location")
private MarkerLocation mLocation;
@SerializedName("sn")
private String mSn;
@SerializedName("type")
private String mType;
@SerializedName("userInfo")
private MarkerUserInfo mUserInfo;
public String getAddr() {
return mAddr;
}
public void setAddr(String addr) {
mAddr = addr;
}
public Long getCanLive() {
return mCanLive;
}
public void setCanLive(Long canLive) {
mCanLive = canLive;
}
public String getCityName() {
return mCityName;
}
public void setCityName(String cityName) {
mCityName = cityName;
}
public Long getDirection() {
return mDirection;
}
public void setDirection(Long direction) {
mDirection = direction;
}
public Long getDistance() {
return mDistance;
}
public void setDistance(Long distance) {
mDistance = distance;
}
public Long getFileType() {
return mFileType;
}
public void setFileType(Long fileType) {
mFileType = fileType;
}
public Long getGenerateTime() {
return mGenerateTime;
}
public void setGenerateTime(Long generateTime) {
mGenerateTime = generateTime;
}
public List<MarkerExploreWayItem> getItems() {
return mItems;
}
public void setItems(List<MarkerExploreWayItem> items) {
mItems = items;
}
public MarkerLocation getLocation() {
return mLocation;
}
public void setLocation(MarkerLocation location) {
mLocation = location;
}
public String getSn() {
return mSn;
}
public void setSn(String sn) {
mSn = sn;
}
public String getType() {
return mType;
}
public void setType(String type) {
mType = type;
}
public MarkerUserInfo getUserInfo() {
return mUserInfo;
}
public void setUserInfo(MarkerUserInfo userInfo) {
mUserInfo = userInfo;
}
}

View File

@@ -0,0 +1,30 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerExploreWayItem {
@SerializedName("thumbnail")
private String mThumbnail;
@SerializedName("url")
private String mUrl;
public String getThumbnail() {
return mThumbnail;
}
public void setThumbnail(String thumbnail) {
mThumbnail = thumbnail;
}
public String getUrl() {
return mUrl;
}
public void setUrl(String url) {
mUrl = url;
}
}

View File

@@ -0,0 +1,30 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerHobbyDatum {
@SerializedName("content")
private String mContent;
@SerializedName("isCheck")
private Long mIsCheck;
public String getContent() {
return mContent;
}
public void setContent(String content) {
mContent = content;
}
public Long getIsCheck() {
return mIsCheck;
}
public void setIsCheck(Long isCheck) {
mIsCheck = isCheck;
}
}

View File

@@ -0,0 +1,50 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerLocation {
@SerializedName("address")
private String mAddress;
@SerializedName("angle")
private String mAngle;
@SerializedName("lat")
private String mLat;
@SerializedName("lon")
private String mLon;
public String getAddress() {
return mAddress;
}
public void setAddress(String address) {
mAddress = address;
}
public String getAngle() {
return mAngle;
}
public void setAngle(String angle) {
mAngle = angle;
}
public String getLat() {
return mLat;
}
public void setLat(String lat) {
mLat = lat;
}
public String getLon() {
return mLon;
}
public void setLon(String lon) {
mLon = lon;
}
}

View File

@@ -0,0 +1,101 @@
package com.mogo.module.service.entity;
import java.util.List;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerOnlineCar {
@SerializedName("activitiesScope")
private List<MarkerActivitiesScope> mActivitiesScope;
@SerializedName("carInfo")
private MarkerCarInfo mCarInfo;
@SerializedName("compatibility")
private Long mCompatibility;
@SerializedName("dynamicData")
private MarkerDynamicData mDynamicData;
@SerializedName("hobbyData")
private List<MarkerHobbyDatum> mHobbyData;
@SerializedName("isFocus")
private Long mIsFocus;
@SerializedName("location")
private MarkerLocation mLocation;
@SerializedName("type")
private String mType;
@SerializedName("userInfo")
private MarkerUserInfo mUserInfo;
public List<MarkerActivitiesScope> getActivitiesScope() {
return mActivitiesScope;
}
public void setActivitiesScope(List<MarkerActivitiesScope> activitiesScope) {
mActivitiesScope = activitiesScope;
}
public MarkerCarInfo getCarInfo() {
return mCarInfo;
}
public void setCarInfo(MarkerCarInfo carInfo) {
mCarInfo = carInfo;
}
public Long getCompatibility() {
return mCompatibility;
}
public void setCompatibility(Long compatibility) {
mCompatibility = compatibility;
}
public MarkerDynamicData getDynamicData() {
return mDynamicData;
}
public void setDynamicData(MarkerDynamicData dynamicData) {
mDynamicData = dynamicData;
}
public List<MarkerHobbyDatum> getHobbyData() {
return mHobbyData;
}
public void setHobbyData(List<MarkerHobbyDatum> hobbyData) {
mHobbyData = hobbyData;
}
public Long getIsFocus() {
return mIsFocus;
}
public void setIsFocus(Long isFocus) {
mIsFocus = isFocus;
}
public MarkerLocation getLocation() {
return mLocation;
}
public void setLocation(MarkerLocation location) {
mLocation = location;
}
public String getType() {
return mType;
}
public void setType(String type) {
mType = type;
}
public MarkerUserInfo getUserInfo() {
return mUserInfo;
}
public void setUserInfo(MarkerUserInfo userInfo) {
mUserInfo = userInfo;
}
}

View File

@@ -0,0 +1,80 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerShareMusic {
@SerializedName("id")
private String mId;
@SerializedName("likeNumber")
private Long mLikeNumber;
@SerializedName("location")
private MarkerLocation mLocation;
@SerializedName("musicName")
private String mMusicName;
@SerializedName("shareContentText")
private String mShareContentText;
@SerializedName("type")
private String mType;
@SerializedName("userInfo")
private MarkerUserInfo mUserInfo;
public String getId() {
return mId;
}
public void setId(String id) {
mId = id;
}
public Long getLikeNumber() {
return mLikeNumber;
}
public void setLikeNumber(Long likeNumber) {
mLikeNumber = likeNumber;
}
public MarkerLocation getLocation() {
return mLocation;
}
public void setLocation(MarkerLocation location) {
mLocation = location;
}
public String getMusicName() {
return mMusicName;
}
public void setMusicName(String musicName) {
mMusicName = musicName;
}
public String getShareContentText() {
return mShareContentText;
}
public void setShareContentText(String shareContentText) {
mShareContentText = shareContentText;
}
public String getType() {
return mType;
}
public void setType(String type) {
mType = type;
}
public MarkerUserInfo getUserInfo() {
return mUserInfo;
}
public void setUserInfo(MarkerUserInfo userInfo) {
mUserInfo = userInfo;
}
}

View File

@@ -0,0 +1,70 @@
package com.mogo.module.service.entity;
import com.google.gson.annotations.SerializedName;
@SuppressWarnings("unused")
public class MarkerUserInfo {
@SerializedName("age")
private Long mAge;
@SerializedName("gender")
private Long mGender;
@SerializedName("sn")
private String mSn;
@SerializedName("userHead")
private String mUserHead;
@SerializedName("userId")
private Long mUserId;
@SerializedName("userName")
private String mUserName;
public Long getAge() {
return mAge;
}
public void setAge(Long age) {
mAge = age;
}
public Long getGender() {
return mGender;
}
public void setGender(Long gender) {
mGender = gender;
}
public String getSn() {
return mSn;
}
public void setSn(String sn) {
mSn = sn;
}
public String getUserHead() {
return mUserHead;
}
public void setUserHead(String userHead) {
mUserHead = userHead;
}
public Long getUserId() {
return mUserId;
}
public void setUserId(Long userId) {
mUserId = userId;
}
public String getUserName() {
return mUserName;
}
public void setUserName(String userName) {
mUserName = userName;
}
}