增加了Serializable

This commit is contained in:
董宏宇
2020-01-08 14:52:46 +08:00
parent 3f89696eed
commit 526379bd05
13 changed files with 35 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;

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;

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;

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;

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;

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;

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;

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;

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;

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;

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;

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;

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;