package cn.com.qmth.examcloud.web.upyun; /** * 路径 * * @author WANGWEI * @date 2019年5月9日 * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved. */ public class UpYunPathInfo { private String url; private String relativePath; /** * 构造函数 * * @param url * @param relativePath */ public UpYunPathInfo(String url, String relativePath) { super(); this.url = url; this.relativePath = relativePath; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getRelativePath() { return relativePath; } public void setRelativePath(String relativePath) { this.relativePath = relativePath; } }