MourningModelBean.java
2.58 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package com.wd.foundation.bean.response;
import java.util.List;
import com.wd.foundation.bean.base.BaseBean;
/**
* 国殇类
*
* @description:
* @author: liyubing
* @date :2023/3/17 10:55
* @version 1.0.0
*/
public class MourningModelBean extends BaseBean {
/**
* 国殇模式开关:true-开启,false-关闭
*/
private boolean switchOpen;
/**
* 灰度状态:0-待上线,1-灰度中,2-全量发布
*/
private int onlineState;
/**
* 底部导航开关(TAB图标/文字):true-开启,false-关闭
*/
private boolean bottomNavOpen;
/**
* 涉及范围选择,一键全选:true-全选,false-非全选;
*/
private boolean selectAll;
/**
* 新闻
*/
private List<String> newsList;
/**
* 人民号
*/
private List<String> rmhList;
/**
* 适配
*/
private List<String> videoList;
/**
* 服务
*/
private List<String> serverList;
/**
* 灰度用户userId集合
*/
private List<String> greyUserList;
public boolean isSwitchOpen() {
return switchOpen;
}
public void setSwitchOpen(boolean switchOpen) {
this.switchOpen = switchOpen;
}
public List<String> getNewsList() {
return newsList;
}
public void setNewsList(List<String> newsList) {
this.newsList = newsList;
}
public List<String> getVideoList() {
return videoList;
}
public void setVideoList(List<String> videoList) {
this.videoList = videoList;
}
public boolean isSelectAll() {
return selectAll;
}
public void setSelectAll(boolean selectAll) {
this.selectAll = selectAll;
}
public List<String> getRmhList() {
return rmhList;
}
public void setRmhList(List<String> rmhList) {
this.rmhList = rmhList;
}
public List<String> getServerList() {
return serverList;
}
public void setServerList(List<String> serverList) {
this.serverList = serverList;
}
public boolean isBottomNavOpen() {
return bottomNavOpen;
}
public void setBottomNavOpen(boolean bottomNavOpen) {
this.bottomNavOpen = bottomNavOpen;
}
public int getOnlineState() {
return onlineState;
}
public void setOnlineState(int onlineState) {
this.onlineState = onlineState;
}
public List<String> getGreyUserList() {
return greyUserList;
}
public void setGreyUserList(List<String> greyUserList) {
this.greyUserList = greyUserList;
}
}