| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- 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;
- }
- }
|