admin
2021-02-03 1981dee5aec45793d3c4ebdbc4e637528c71b3c5
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.weikou.beibeivideo.entity;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
 
/**
 * Created by weikou2015 on 2017/1/10.
 * 商品介绍--商品列表
 */
 
public class GoodsInfo implements Serializable {
    @Expose
    private UserInfo loginUser;//用户信息
    @Expose
    private Ware Item;//商品信息
    @Expose
    private String Collectcount;//收藏数
    @Expose
    private String Commentcount;//评论数
    @Expose
    private String Title;//首条评论
    @Expose
    private String Collect;//收藏
    @Expose
    private String Id;//收藏
 
    public String getId() {
        return Id;
    }
 
    public void setId(String id) {
        Id = id;
    }
 
    public String getCollect() {
        return Collect;
    }
 
    public void setCollect(String collect) {
        Collect = collect;
    }
 
    public void setLoginUser(UserInfo loginUser) {
        this.loginUser = loginUser;
    }
 
    public UserInfo getLoginUser() {
        return loginUser;
    }
 
    public Ware getItem() {
        return Item;
    }
 
    public void setItem(Ware item) {
        this.Item = item;
    }
 
    public String getCollectcount() {
        return Collectcount;
    }
 
    public void setCollectcount(String collectcount) {
        Collectcount = collectcount;
    }
 
    public String getCommentcount() {
        return Commentcount;
    }
 
    public void setCommentcount(String commentcount) {
        Commentcount = commentcount;
    }
 
    public String getTitle() {
        return Title;
    }
 
    public void setTitle(String title) {
        Title = title;
    }
}