package com.weikou.beibeivideo.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.util.List;
|
|
/**
|
* Created by weikou2015 on 2017/1/10.
|
* 评论信息--评论列表
|
*/
|
public class GoodsComments {
|
@Expose
|
private String Id;//商品本地ID
|
@Expose
|
private String Content;//评论内容
|
@Expose
|
private String Createtime;//评论时间
|
@Expose
|
private UserInfo User;
|
|
public UserInfo getUser() {
|
return User;
|
}
|
|
public void setUser(UserInfo user) {
|
User = user;
|
}
|
|
public String getId() {
|
return Id;
|
}
|
|
public void setId(String id) {
|
this.Id = id;
|
}
|
|
public String getContent() {
|
return Content;
|
}
|
|
public void setContent(String content) {
|
Content = content;
|
}
|
|
public String getCreatetime() {
|
return Createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
Createtime = createtime;
|
}
|
|
}
|