package com.tejia.lijin.app.entity.share;
|
|
import java.io.Serializable;
|
|
public class ShareGoodsCommentChoiceInfo implements Serializable {
|
|
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;// 返利金额
|
|
private int type;// 类型
|
private String name;// 名称
|
private String content;// 内容
|
private boolean selected;// 是否选中
|
private boolean canCancel;// 是否可取消
|
|
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;
|
}
|
|
public boolean isSelected() {
|
return selected;
|
}
|
|
public void setSelected(boolean selected) {
|
this.selected = selected;
|
}
|
|
public boolean isCanCancel() {
|
return canCancel;
|
}
|
|
public void setCanCancel(boolean canCancel) {
|
this.canCancel = canCancel;
|
}
|
|
|
}
|