MobShareBean.java
1.4 KB
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
82
83
package com.wd.foundation.bean.share;
/**
* Time:2023/2/7
* Author:ypf
* Description:分享
*/
public class MobShareBean {
/**
* 功能类型
*/
private int type;
/**
* 功能图标
*/
private int logo;
/**
* 功能标题
*/
private String describe;
/**
* 是否展示收藏图标
* -1-不展示图标
* 0-未收藏
* 1-已收藏
*/
private int showCollect = -1;
/**
* 是否展示点赞图标
* -1-不展示图标
*/
private int showLike = -1;
public MobShareBean(int type, int logo, String describe) {
this.type = type;
this.logo = logo;
this.describe = describe;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public int getLogo() {
return logo;
}
public void setLogo(int logo) {
this.logo = logo;
}
public String getDescribe() {
return describe;
}
public void setDescribe(String describe) {
this.describe = describe;
}
public int getShowCollect() {
return showCollect;
}
public void setShowCollect(int showCollect) {
this.showCollect = showCollect;
}
public int getShowLike() {
return showLike;
}
public void setShowLike(int showLike) {
this.showLike = showLike;
}
}