package com.ruoyi.project.bo; /** * "deptId": 133, * "parentId": 131, * "ancestors": "0,100,131", * "deptName": "研发服务中心", * "orderNum": 1, * "leader": null, * "phone": null, * "email": null, * "status": "0", * "delFlag": "0", * "parentName": null, * "maxDuration": 8, * "companyId": 131, * "companyName": "湖南科德信息咨询集团有限公司", * "startTime": null, * "endTime": null, * "companyLogo": null, * "companyFullName": null, * "kyId": null, * "usci": "91430105670766451M", * "children": [] * */ public class pushDataDep { private Long deptId; private Long parentId; private String ancestors; private String deptName; private Integer orderNum; private String kyId; private String kySuperId; private String usci; private Double maxDuration; public Double getMaxDuration() { return maxDuration; } public void setMaxDuration(Double maxDuration) { this.maxDuration = maxDuration; } public String getKyId() { return kyId; } public void setKyId(String kyId) { this.kyId = kyId; } public String getKySuperId() { return kySuperId; } public void setKySuperId(String kySuperId) { this.kySuperId = kySuperId; } public Long getDeptId() { return deptId; } public void setDeptId(Long deptId) { this.deptId = deptId; } public Long getParentId() { return parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public String getAncestors() { return ancestors; } public void setAncestors(String ancestors) { this.ancestors = ancestors; } public String getDeptName() { return deptName; } public void setDeptName(String deptName) { this.deptName = deptName; } public Integer getOrderNum() { return orderNum; } public void setOrderNum(Integer orderNum) { this.orderNum = orderNum; } public String getUsci() { return usci; } public void setUsci(String usci) { this.usci = usci; } }