UserPopUpsBean.java
770 Bytes
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
package com.wd.foundation.bean.pop;
import com.wd.foundation.bean.base.BaseBean;
import java.util.List;
/**
* 单用户彩蛋缓存数据
* @author baozhaoxin
* @version [V1.0.0, 2024/8/22]
* @since V1.0.0
*/
public class UserPopUpsBean extends BaseBean {
/**
* 用户id
*/
private String userId;
/**
* 展示的彩蛋数据
*/
private List<PopUpsBean> popUpsBeanList;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public List<PopUpsBean> getPopUpsBeanList() {
return popUpsBeanList;
}
public void setPopUpsBeanList(List<PopUpsBean> popUpsBeanList) {
this.popUpsBeanList = popUpsBeanList;
}
}