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;
|
}
|
}
|