WebFileVo.java 1.02 KB
Newer Older
yanzg's avatar
yanzg committed
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
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;
    }
}