package com.consum.base.pojo; import java.util.List; public class FinSysServerVo { // // 主键 // private Long id = null; // // 属性列表 // // private Long createTime = null; // private Long createdTime = null; // // private String createUser = null; // private String createdBy = null; // private String name = null; // private String code = null; // //private Integer level = null; // private Integer lvType=null; // private Long lv = null; // private Long status = null; // private Long delFlag = null; // private Long parentId = null; // private List children=null; // // public FinSysServerVo() { // } // // public Long getId() { // return id; // } // // public void setId(Long id) { // this.id = id; // } // // public Long getCreatedTime() { // return createdTime; // } // // public void setCreatedTime(Long createdTime) { // this.createdTime = createdTime; // } // // public String getCreatedBy() { // return createdBy; // } // // public void setCreatedBy(String createdBy) { // this.createdBy = createdBy; // } // // public String getName() { // return name; // } // // public void setName(String name) { // this.name = name; // } // // public String getCode() { // return code; // } // // public void setCode(String code) { // this.code = code; // } // // public Integer getLvType() { // return lvType; // } // // public void setLvType(Integer lvType) { // this.lvType = lvType; // } // // public Long getLv() { // return lv; // } // // public void setLv(Long lv) { // this.lv = lv; // } // // public Long getStatus() { // return status; // } // // public void setStatus(Long status) { // this.status = status; // } // // public Long getDelFlag() { // return delFlag; // } // // public void setDelFlag(Long delFlag) { // this.delFlag = delFlag; // } // // public Long getParentId() { // return parentId; // } // // public void setParentId(Long parentId) { // this.parentId = parentId; // } // // public List getChildren() { // return children; // } // // public void setChildren(List children) { // this.children = children; // } // // @Override // public String toString() { // return "FinSysCategoryVo{" + // "id=" + id + // ", createdTime=" + createdTime + // ", createdBy='" + createdBy + '\'' + // ", name='" + name + '\'' + // ", code='" + code + '\'' + // ", lvType=" + lvType + // ", lv=" + lv + // ", status=" + status + // ", delFlag=" + delFlag + // ", parentId=" + parentId + // ", children=" + children + // '}'; // } private Long id; private String label; private Long parentId; private List children; public FinSysServerVo(Long id, String label, Long parentId, List children) { this.id = id; this.label = label; this.parentId = parentId; this.children = children; } public FinSysServerVo() { } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } public Long getParentId() { return parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public List getChildren() { return children; } public void setChildren(List children) { this.children = children; } }