pushDataDep.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package com.ruoyi.project.bo;
  2. /**
  3. * "deptId": 133,
  4. * "parentId": 131,
  5. * "ancestors": "0,100,131",
  6. * "deptName": "研发服务中心",
  7. * "orderNum": 1,
  8. * "leader": null,
  9. * "phone": null,
  10. * "email": null,
  11. * "status": "0",
  12. * "delFlag": "0",
  13. * "parentName": null,
  14. * "maxDuration": 8,
  15. * "companyId": 131,
  16. * "companyName": "湖南科德信息咨询集团有限公司",
  17. * "startTime": null,
  18. * "endTime": null,
  19. * "companyLogo": null,
  20. * "companyFullName": null,
  21. * "kyId": null,
  22. * "usci": "91430105670766451M",
  23. * "children": []
  24. *
  25. */
  26. public class pushDataDep {
  27. private Long deptId;
  28. private Long parentId;
  29. private String ancestors;
  30. private String deptName;
  31. private Integer orderNum;
  32. private String kyId;
  33. private String kySuperId;
  34. private String usci;
  35. private Double maxDuration;
  36. public Double getMaxDuration() {
  37. return maxDuration;
  38. }
  39. public void setMaxDuration(Double maxDuration) {
  40. this.maxDuration = maxDuration;
  41. }
  42. public String getKyId() {
  43. return kyId;
  44. }
  45. public void setKyId(String kyId) {
  46. this.kyId = kyId;
  47. }
  48. public String getKySuperId() {
  49. return kySuperId;
  50. }
  51. public void setKySuperId(String kySuperId) {
  52. this.kySuperId = kySuperId;
  53. }
  54. public Long getDeptId() {
  55. return deptId;
  56. }
  57. public void setDeptId(Long deptId) {
  58. this.deptId = deptId;
  59. }
  60. public Long getParentId() {
  61. return parentId;
  62. }
  63. public void setParentId(Long parentId) {
  64. this.parentId = parentId;
  65. }
  66. public String getAncestors() {
  67. return ancestors;
  68. }
  69. public void setAncestors(String ancestors) {
  70. this.ancestors = ancestors;
  71. }
  72. public String getDeptName() {
  73. return deptName;
  74. }
  75. public void setDeptName(String deptName) {
  76. this.deptName = deptName;
  77. }
  78. public Integer getOrderNum() {
  79. return orderNum;
  80. }
  81. public void setOrderNum(Integer orderNum) {
  82. this.orderNum = orderNum;
  83. }
  84. public String getUsci() {
  85. return usci;
  86. }
  87. public void setUsci(String usci) {
  88. this.usci = usci;
  89. }
  90. }