admin
2021-07-08 1764c1784a4cf1a6afd25fcf1a0eef6187a84218
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
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;
    }
 
 
}