package com.yanzuoguang.cloud.vo; import com.yanzuoguang.util.vo.BaseVo; /** * 上传文件返回实体 * @author 阿姨中诺广 */ public class WebFileVo extends BaseVo { /** * 上传前文件名称 */ private String oldName; /** * 上传后文件名称 */ private String newName; /** * 文件保存路径 */ private String path; /** * nginx请求地址 */ private String nginxUrl; public String getOldName() { return oldName; } public void setOldName(String oldName) { this.oldName = oldName; } public String getNewName() { return newName; } public void setNewName(String newName) { this.newName = newName; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getNginxUrl() { return nginxUrl; } public void setNginxUrl(String nginxUrl) { this.nginxUrl = nginxUrl; } }