riku
2025-10-31 1897c4ad5fa73b3f0a36e1aa0e1e9000302a6ace
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
package cn.flightfeather.thirdappmodule.bean.vo;
 
import java.util.List;
 
/**
 * 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;
    }
}