forked from vector4wang/spring-boot-quick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParamVo.java
More file actions
37 lines (31 loc) · 711 Bytes
/
ParamVo.java
File metadata and controls
37 lines (31 loc) · 711 Bytes
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
package com.quick.util;
/**
* @Author: wangxc
* @GitHub: https://github.com/vector4wang
* @CSDN: http://blog.csdn.net/qqhjqs?viewmode=contents
* @BLOG: http://vector4wang.tk
* @wxid: BMHJQS
*/
public class ParamVo {
private String url;
private String html;
@Override
public String toString() {
return "ParamVo{" +
"url='" + url + '\'' +
", html='" + html + '\'' +
'}';
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getHtml() {
return html;
}
public void setHtml(String html) {
this.html = html;
}
}