IntegralExecutionOfRulesBean.java
797 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.incentive;
import java.util.List;
import com.wd.foundation.bean.base.BaseBean;
/**
* 积分任务完成情况bean
*
* @author baozhaoxin
* @version [V1.0.0, 2023/11/22]
* @since V1.0.0
*/
public class IntegralExecutionOfRulesBean extends BaseBean {
/**
* 每日任务
*/
private List<ExecutionOfRuleBean> daily;
/**
* 新手任务
*/
private List<ExecutionOfRuleBean> once;
public List<ExecutionOfRuleBean> getDaily() {
return daily;
}
public void setDaily(List<ExecutionOfRuleBean> daily) {
this.daily = daily;
}
public List<ExecutionOfRuleBean> getOnce() {
return once;
}
public void setOnce(List<ExecutionOfRuleBean> once) {
this.once = once;
}
}