1
wxr
2023-04-23 2cd55265ccff3b0a267d7953b2dd9e5dca437aa6
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.videogo.remoteplayback.list.bean;
 
import com.videogo.openapi.bean.resp.CloudPartInfoFile;
 
public class CloudPartInfoFileEx {
 
    private CloudPartInfoFile dataOne;
 
    private CloudPartInfoFile dataTwo;
 
    private CloudPartInfoFile dataThree;
 
    private String headHour;
    // 是否存在本地数据文件
    private boolean isMore;
 
    public CloudPartInfoFile getDataOne() {
        return dataOne;
    }
 
    public void setDataOne(CloudPartInfoFile dataOne) {
        this.dataOne = dataOne;
    }
 
    public CloudPartInfoFile getDataTwo() {
        return dataTwo;
    }
 
    public void setDataTwo(CloudPartInfoFile dataTwo) {
        this.dataTwo = dataTwo;
    }
 
    public CloudPartInfoFile getDataThree() {
        return dataThree;
    }
 
    public void setDataThree(CloudPartInfoFile dataThree) {
        this.dataThree = dataThree;
    }
 
    public String getHeadHour() {
        return headHour;
    }
 
    public void setHeadHour(String headHour) {
        this.headHour = headHour;
    }
 
    public boolean isMore() {
        return isMore;
    }
 
    public void setMore(boolean isMore) {
        this.isMore = isMore;
    }
 
}