package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2017/6/21.
|
*/
|
|
public class RecommendReply implements Serializable {
|
|
@Expose
|
private String id;
|
@Expose
|
private Replier replier;
|
@Expose
|
private String replyTime;
|
@Expose
|
private String content;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Replier getReplier() {
|
return replier;
|
}
|
|
public void setReplier(Replier replier) {
|
this.replier = replier;
|
}
|
|
public String getReplyTime() {
|
return replyTime;
|
}
|
|
public void setReplyTime(String replyTime) {
|
this.replyTime = replyTime;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
}
|