OrgDto.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package com.java110.dto.org;
  2. import com.java110.dto.PageDto;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * @ClassName FloorDto
  7. * @Description 组织数据层封装
  8. * @Author wuxw
  9. * @Date 2019/4/24 8:52
  10. * @Version 1.0
  11. * add by wuxw 2019/4/24
  12. **/
  13. public class OrgDto extends PageDto implements Serializable {
  14. public static final String ORG_LEVEL_COMPANY = "2";
  15. public static final String ORG_LEVEL_DEPARTMENT = "3";
  16. private String orgName;
  17. private String parentOrgId;
  18. private String description;
  19. private String orgLevel;
  20. private String storeId;
  21. private String orgId;
  22. private String belongCommunityId;
  23. private String belongCommunityName;
  24. private String allowOperation;
  25. private String staffId;
  26. private String staffName;
  27. private String parentOrgName;
  28. private String orgLevelName;
  29. private Date createTime;
  30. private String statusCd = "0";
  31. public String getOrgName() {
  32. return orgName;
  33. }
  34. public void setOrgName(String orgName) {
  35. this.orgName = orgName;
  36. }
  37. public String getParentOrgId() {
  38. return parentOrgId;
  39. }
  40. public void setParentOrgId(String parentOrgId) {
  41. this.parentOrgId = parentOrgId;
  42. }
  43. public String getDescription() {
  44. return description;
  45. }
  46. public void setDescription(String description) {
  47. this.description = description;
  48. }
  49. public String getOrgLevel() {
  50. return orgLevel;
  51. }
  52. public void setOrgLevel(String orgLevel) {
  53. this.orgLevel = orgLevel;
  54. }
  55. public String getStoreId() {
  56. return storeId;
  57. }
  58. public void setStoreId(String storeId) {
  59. this.storeId = storeId;
  60. }
  61. public String getOrgId() {
  62. return orgId;
  63. }
  64. public void setOrgId(String orgId) {
  65. this.orgId = orgId;
  66. }
  67. public Date getCreateTime() {
  68. return createTime;
  69. }
  70. public void setCreateTime(Date createTime) {
  71. this.createTime = createTime;
  72. }
  73. public String getStatusCd() {
  74. return statusCd;
  75. }
  76. public void setStatusCd(String statusCd) {
  77. this.statusCd = statusCd;
  78. }
  79. public String getOrgLevelName() {
  80. return orgLevelName;
  81. }
  82. public void setOrgLevelName(String orgLevelName) {
  83. this.orgLevelName = orgLevelName;
  84. }
  85. public String getParentOrgName() {
  86. return parentOrgName;
  87. }
  88. public void setParentOrgName(String parentOrgName) {
  89. this.parentOrgName = parentOrgName;
  90. }
  91. public String getBelongCommunityId() {
  92. return belongCommunityId;
  93. }
  94. public void setBelongCommunityId(String belongCommunityId) {
  95. this.belongCommunityId = belongCommunityId;
  96. }
  97. public String getBelongCommunityName() {
  98. return belongCommunityName;
  99. }
  100. public void setBelongCommunityName(String belongCommunityName) {
  101. this.belongCommunityName = belongCommunityName;
  102. }
  103. public String getAllowOperation() {
  104. return allowOperation;
  105. }
  106. public void setAllowOperation(String allowOperation) {
  107. this.allowOperation = allowOperation;
  108. }
  109. public String getStaffId() {
  110. return staffId;
  111. }
  112. public void setStaffId(String staffId) {
  113. this.staffId = staffId;
  114. }
  115. public String getStaffName() {
  116. return staffName;
  117. }
  118. public void setStaffName(String staffName) {
  119. this.staffName = staffName;
  120. }
  121. }