admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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;
    }
 
}