ToolBean.java
1.08 KB
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
package com.shunzhi.parent.bean;
import java.io.Serializable;
/**
* Created by ToaHanDong on 2018/3/14.
* toolId (integer, optional): 工具ID ,
* toolName (string, optional): 工具名称 ,
* toolImage (string, optional): 工具图片 ,
* toolUrl (string, optional): 工具链接 ,
* orderById (integer, optional): 工具排序
*/
public class ToolBean implements Serializable {
public ToolBean(String toolImg, String toolName) {
this.toolImage = toolImg;
this.toolName = toolName;
}
public String toolImage;
public String toolName;
public String toolUrl;
public String toolId;
public String columnType;
public String orderById;
@Override
public String toString() {
return "ToolBean{" +
"toolImage='" + toolImage + '\'' +
", toolName='" + toolName + '\'' +
", toolUrl='" + toolUrl + '\'' +
", toolId='" + toolId + '\'' +
", columnType='" + columnType + '\'' +
", orderById='" + orderById + '\'' +
'}';
}
}