From a42d627370b78a731670170d3bdb5d96a522b3c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Mon, 6 Jan 2020 19:53:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=86=E5=A4=A7=E8=80=8C?= =?UTF-8?q?=E5=85=A8=E7=9A=84=E6=95=B0=E6=8D=AE=E5=AE=9E=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/entity/MapMarkerCardResult.java | 51 +++++++ .../service/entity/MapMarkerResponse.java | 50 +++++++ .../service/entity/MarkerActivitiesScope.java | 30 ++++ .../module/service/entity/MarkerCarChat.java | 40 ++++++ .../module/service/entity/MarkerCarInfo.java | 30 ++++ .../service/entity/MarkerDynamicData.java | 40 ++++++ .../service/entity/MarkerExploreWay.java | 131 ++++++++++++++++++ .../service/entity/MarkerExploreWayItem.java | 30 ++++ .../service/entity/MarkerHobbyDatum.java | 30 ++++ .../module/service/entity/MarkerLocation.java | 50 +++++++ .../service/entity/MarkerOnlineCar.java | 101 ++++++++++++++ .../service/entity/MarkerShareMusic.java | 80 +++++++++++ .../module/service/entity/MarkerUserInfo.java | 70 ++++++++++ 13 files changed, 733 insertions(+) create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MapMarkerCardResult.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MapMarkerResponse.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerActivitiesScope.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerCarChat.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerCarInfo.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerDynamicData.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerExploreWay.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerExploreWayItem.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerHobbyDatum.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerLocation.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerOnlineCar.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerShareMusic.java create mode 100644 modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerUserInfo.java diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MapMarkerCardResult.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MapMarkerCardResult.java new file mode 100644 index 0000000000..5d3f28cc77 --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MapMarkerCardResult.java @@ -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 mCarChat; + @SerializedName("exploreWay") + private List mExploreWay; + @SerializedName("onlineCar") + private List mOnlineCar; + @SerializedName("shareMusic") + private List mShareMusic; + + public List getCarChat() { + return mCarChat; + } + + public void setCarChat(List carChat) { + mCarChat = carChat; + } + + public List getExploreWay() { + return mExploreWay; + } + + public void setExploreWay(List exploreWay) { + mExploreWay = exploreWay; + } + + public List getOnlineCar() { + return mOnlineCar; + } + + public void setOnlineCar(List onlineCar) { + mOnlineCar = onlineCar; + } + + public List getShareMusic() { + return mShareMusic; + } + + public void setShareMusic(List shareMusic) { + mShareMusic = shareMusic; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MapMarkerResponse.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MapMarkerResponse.java new file mode 100644 index 0000000000..995ba4f9bb --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MapMarkerResponse.java @@ -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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerActivitiesScope.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerActivitiesScope.java new file mode 100644 index 0000000000..85567b97a5 --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerActivitiesScope.java @@ -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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerCarChat.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerCarChat.java new file mode 100644 index 0000000000..4a4260d8ae --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerCarChat.java @@ -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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerCarInfo.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerCarInfo.java new file mode 100644 index 0000000000..35303e381e --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerCarInfo.java @@ -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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerDynamicData.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerDynamicData.java new file mode 100644 index 0000000000..0e9080d565 --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerDynamicData.java @@ -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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerExploreWay.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerExploreWay.java new file mode 100644 index 0000000000..319e3275a5 --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerExploreWay.java @@ -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 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 getItems() { + return mItems; + } + + public void setItems(List 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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerExploreWayItem.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerExploreWayItem.java new file mode 100644 index 0000000000..e54aeee7a2 --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerExploreWayItem.java @@ -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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerHobbyDatum.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerHobbyDatum.java new file mode 100644 index 0000000000..73af126e75 --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerHobbyDatum.java @@ -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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerLocation.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerLocation.java new file mode 100644 index 0000000000..e48747e67f --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerLocation.java @@ -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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerOnlineCar.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerOnlineCar.java new file mode 100644 index 0000000000..46e1c4b9fb --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerOnlineCar.java @@ -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 mActivitiesScope; + @SerializedName("carInfo") + private MarkerCarInfo mCarInfo; + @SerializedName("compatibility") + private Long mCompatibility; + @SerializedName("dynamicData") + private MarkerDynamicData mDynamicData; + @SerializedName("hobbyData") + private List mHobbyData; + @SerializedName("isFocus") + private Long mIsFocus; + @SerializedName("location") + private MarkerLocation mLocation; + @SerializedName("type") + private String mType; + @SerializedName("userInfo") + private MarkerUserInfo mUserInfo; + + public List getActivitiesScope() { + return mActivitiesScope; + } + + public void setActivitiesScope(List 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 getHobbyData() { + return mHobbyData; + } + + public void setHobbyData(List 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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerShareMusic.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerShareMusic.java new file mode 100644 index 0000000000..4bf58b6150 --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerShareMusic.java @@ -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; + } + +} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerUserInfo.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerUserInfo.java new file mode 100644 index 0000000000..ca83979c02 --- /dev/null +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerUserInfo.java @@ -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; + } + +}