PopUpsCacheBean.java
815 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 PopUpsCacheBean extends BaseBean {
/**
* 时间
*/
private long dailyTime;
/**
* 展示的彩蛋数据
*/
private List<UserPopUpsBean> userPopUpsBeanList;
public long getDailyTime() {
return dailyTime;
}
public void setDailyTime(long dailyTime) {
this.dailyTime = dailyTime;
}
public List<UserPopUpsBean> getUserPopUpsBeanList() {
return userPopUpsBeanList;
}
public void setUserPopUpsBeanList(List<UserPopUpsBean> userPopUpsBeanList) {
this.userPopUpsBeanList = userPopUpsBeanList;
}
}