package com.newvideo.domain.shop;
|
|
import com.google.gson.annotations.Expose;
|
import com.newvideo.domain.LoginUser;
|
|
public class ShopItemComment {
|
private long id;
|
@Expose
|
private LoginUser user;
|
@Expose
|
private long itemid;
|
@Expose
|
private String content;
|
@Expose
|
private String createtime;
|
private boolean show;
|
|
public boolean isShow() {
|
return show;
|
}
|
|
public void setShow(boolean show) {
|
this.show = show;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public long getId() {
|
return id;
|
}
|
|
public void setId(long id) {
|
this.id = id;
|
}
|
|
public LoginUser getUser() {
|
return user;
|
}
|
|
public void setUser(LoginUser 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;
|
}
|
}
|