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
package cn.flightfeather.thirdapp.bean;
 
import java.util.List;
 
import cn.flightfeather.thirdapp.bean.vo.TaskVo;
 
/**
 * Created by note_ff_1602 on 2018/1/12.
 */
 
public class TaskPack {
    private String date;
    private List<TaskVo> upperTaskList;
 
    public String getDate() {
        return date;
    }
 
    public void setDate(String date) {
        this.date = date;
    }
 
    public List<TaskVo> getUpperTaskList() {
        return upperTaskList;
    }
 
    public void setUpperTaskList(List<TaskVo> upperTaskList) {
        this.upperTaskList = upperTaskList;
    }
}