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;
|
}
|
}
|