D_M00024.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 机构详情
  9. */
  10. public class D_M00024 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String deptName;//机构名称
  13. /**
  14. *机构名称
  15. */
  16. public void setDeptName(String deptName) {
  17. this.deptName=deptName;
  18. }
  19. /**
  20. *机构名称
  21. */
  22. public String getDeptName() {
  23. return this.deptName;
  24. }
  25. String deptCode;//机构编号
  26. /**
  27. *机构编号
  28. */
  29. public void setDeptCode(String deptCode) {
  30. this.deptCode=deptCode;
  31. }
  32. /**
  33. *机构编号
  34. */
  35. public String getDeptCode() {
  36. return this.deptCode;
  37. }
  38. String deptParent;//上级机构
  39. /**
  40. *上级机构
  41. */
  42. public void setDeptParent(String deptParent) {
  43. this.deptParent=deptParent;
  44. }
  45. /**
  46. *上级机构
  47. */
  48. public String getDeptParent() {
  49. return this.deptParent;
  50. }
  51. String deptType;//机构类型(1-公司 2-部门)
  52. /**
  53. *机构类型(1-公司 2-部门)
  54. */
  55. public void setDeptType(String deptType) {
  56. this.deptType=deptType;
  57. }
  58. /**
  59. *机构类型(1-公司 2-部门)
  60. */
  61. public String getDeptType() {
  62. return this.deptType;
  63. }
  64. String deptConn;//机构联系人
  65. /**
  66. *机构联系人
  67. */
  68. public void setDeptConn(String deptConn) {
  69. this.deptConn=deptConn;
  70. }
  71. /**
  72. *机构联系人
  73. */
  74. public String getDeptConn() {
  75. return this.deptConn;
  76. }
  77. String deptTel;//机构电话
  78. /**
  79. *机构电话
  80. */
  81. public void setDeptTel(String deptTel) {
  82. this.deptTel=deptTel;
  83. }
  84. /**
  85. *机构电话
  86. */
  87. public String getDeptTel() {
  88. return this.deptTel;
  89. }
  90. String deptAddress;//机构地址
  91. /**
  92. *机构地址
  93. */
  94. public void setDeptAddress(String deptAddress) {
  95. this.deptAddress=deptAddress;
  96. }
  97. /**
  98. *机构地址
  99. */
  100. public String getDeptAddress() {
  101. return this.deptAddress;
  102. }
  103. String deptDesc;//机构说明
  104. /**
  105. *机构说明
  106. */
  107. public void setDeptDesc(String deptDesc) {
  108. this.deptDesc=deptDesc;
  109. }
  110. /**
  111. *机构说明
  112. */
  113. public String getDeptDesc() {
  114. return this.deptDesc;
  115. }
  116. }