管灌系统巡查员智能手机App
zuoxiao
2024-12-09 a2a1bd40089d81286f8257ca4c61ce49155b6af3
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.dayu.pipirrapp.bean.net;
 
/**
 * UplodFileResule -文件上传返回参数
 *
 * @author zuoxiao
 * @version 1.0
 * @since 2024-12-05
 */
public class UplodFileResule {
    String downloadPath;//:http://127.0.0.1:8180/file/download/down?id=2024120515170600010,
    String extName;//jpg,
    String hash;//21457,
    String id;//2024120515170600010,
    String orgName;//IMG_20241205063339310,
    String webPath;//http://127.0.0.1:54321/webfiles/webFile4/photo/20241205/2412051517050000.jpg,
    String webPathZip;//http://127.0.0.1:54321/webfiles/webFile4/photo/20241205/2412051517050000_.jpg
 
 
    public String getDownloadPath() {
        return downloadPath;
    }
 
    public void setDownloadPath(String downloadPath) {
        this.downloadPath = downloadPath;
    }
 
    public String getExtName() {
        return extName;
    }
 
    public void setExtName(String extName) {
        this.extName = extName;
    }
 
    public String getHash() {
        return hash;
    }
 
    public void setHash(String hash) {
        this.hash = hash;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getOrgName() {
        return orgName;
    }
 
    public void setOrgName(String orgName) {
        this.orgName = orgName;
    }
 
    public String getWebPath() {
        return webPath;
    }
 
    public void setWebPath(String webPath) {
        this.webPath = webPath;
    }
 
    public String getWebPathZip() {
        return webPathZip;
    }
 
    public void setWebPathZip(String webPathZip) {
        this.webPathZip = webPathZip;
    }
}