38 lines
719 B
Java
38 lines
719 B
Java
package com.xkrs.allinpay.utils;
|
|
|
|
public class FileUploadPath {
|
|
|
|
/**
|
|
* 上传路径
|
|
*/
|
|
private String uploadPath;
|
|
|
|
/**
|
|
* 访问路径
|
|
*/
|
|
private String accessPath;
|
|
|
|
public FileUploadPath() {
|
|
}
|
|
|
|
public FileUploadPath(String uploadPath, String accessPath) {
|
|
this.uploadPath = uploadPath;
|
|
this.accessPath = accessPath;
|
|
}
|
|
|
|
public String getUploadPath() {
|
|
return uploadPath;
|
|
}
|
|
|
|
public void setUploadPath(String uploadPath) {
|
|
this.uploadPath = uploadPath;
|
|
}
|
|
|
|
public String getAccessPath() {
|
|
return accessPath;
|
|
}
|
|
|
|
public void setAccessPath(String accessPath) {
|
|
this.accessPath = accessPath;
|
|
}
|
|
} |