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 + '\'' + '}'; } }