admin
2024-01-26 c2d382d99ca506932985d1843d4371d6ed0203ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;
    }
 
}