WANG 6 年之前
父节点
当前提交
c0e8d394af

+ 17 - 0
examcloud-exchange-inner-api/src/main/java/cn/com/qmth/examcloud/exchange/inner/api/response/PutFileResp.java

@@ -2,8 +2,25 @@ package cn.com.qmth.examcloud.exchange.inner.api.response;
 
 import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
 
+/**
+ * 类注释
+ *
+ * @author WANGWEI
+ * @date 2018年11月27日
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
+ */
 public class PutFileResp extends BaseResponse {
 
 	private static final long serialVersionUID = 8104484024663316592L;
 
+	private String url;
+
+	public String getUrl() {
+		return url;
+	}
+
+	public void setUrl(String url) {
+		this.url = url;
+	}
+
 }