package com.yeshi.fanli.vo.goods;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 分享商品的评论文本选择信息
|
* @author Administrator
|
*
|
*/
|
public class ShareGoodsCommentChoiceInfo {
|
|
public final static int TYPE_TOKEN = 1;// 口令
|
public final static int TYPE_LINK = 2;// 购买链接
|
public final static int TYPE_INVITE_CODE = 3;// 邀请码
|
public final static int TYPE_DOWNLOAD_LINK = 4;// 下载链接
|
public final static int TYPE_FANLI_MONEY = 5;// 返利金额
|
|
@Expose
|
private int type;// 类型
|
@Expose
|
private String name;// 名称
|
@Expose
|
private String content;// 内容
|
@Expose
|
private boolean selected;// 是否选中
|
@Expose
|
private boolean canCancel;// 是否可取消
|
|
public boolean isCanCancel() {
|
return canCancel;
|
}
|
|
public void setCanCancel(boolean canCancel) {
|
this.canCancel = canCancel;
|
}
|
|
public ShareGoodsCommentChoiceInfo() {
|
|
}
|
|
public ShareGoodsCommentChoiceInfo(int type, String name, String content, boolean selected, boolean canCancel) {
|
this.type = type;
|
this.name = name;
|
this.content = content;
|
this.selected = selected;
|
this.canCancel = canCancel;
|
}
|
|
public boolean isSelected() {
|
return selected;
|
}
|
|
public void setSelected(boolean selected) {
|
this.selected = selected;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
}
|