package com.newvideo.domain.shop;
|
|
import com.google.gson.annotations.Expose;
|
import com.newvideo.domain.UserInfo;
|
|
public class ShopItemCollect {
|
private long id;
|
@Expose
|
private UserInfo user;
|
@Expose
|
private long itemid;
|
@Expose
|
private String createtime;
|
|
@Expose
|
private ShopGoodsItem item;
|
|
public ShopGoodsItem getItem() {
|
return item;
|
}
|
|
public void setItem(ShopGoodsItem item) {
|
this.item = item;
|
}
|
|
public long getId() {
|
return id;
|
}
|
|
public void setId(long id) {
|
this.id = id;
|
}
|
|
public UserInfo getUser() {
|
return user;
|
}
|
|
public void setUser(UserInfo user) {
|
this.user = user;
|
}
|
|
public long getItemid() {
|
return itemid;
|
}
|
|
public void setItemid(long itemid) {
|
this.itemid = itemid;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
}
|