xiangpei
2024-08-21 4a4692342a4ba22283d5e580d15b645f3be65da0
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.ycl.platform.wvp;
 
public class DownloadFileInfo {
 
    private String httpPath;
    private String httpsPath;
    private String httpDomainPath;
    private String httpsDomainPath;
 
    public String getHttpPath() {
        return httpPath;
    }
 
    public void setHttpPath(String httpPath) {
        this.httpPath = httpPath;
    }
 
    public String getHttpsPath() {
        return httpsPath;
    }
 
    public void setHttpsPath(String httpsPath) {
        this.httpsPath = httpsPath;
    }
 
    public String getHttpDomainPath() {
        return httpDomainPath;
    }
 
    public void setHttpDomainPath(String httpDomainPath) {
        this.httpDomainPath = httpDomainPath;
    }
 
    public String getHttpsDomainPath() {
        return httpsDomainPath;
    }
 
    public void setHttpsDomainPath(String httpsDomainPath) {
        this.httpsDomainPath = httpsDomainPath;
    }
}