846f63fb07e68f809ecddc67b863b4359e48401f.svn-base 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /**
  2. *
  3. */
  4. package com.sinosoft.am.org.dept.outdept.vo;
  5. /**
  6. * @author 蒋云涛
  7. *
  8. */
  9. public class OrgOutDeptVo {
  10. /* 对应数据库的字段*/
  11. private String fdObjectid;
  12. private String orgDeptName;
  13. private String orgDeptType;
  14. private String linkDept;
  15. private String linkMan;
  16. private String code;
  17. private String site;
  18. private String location;
  19. private String workAddress;
  20. private String updateDate;
  21. private String deptId;
  22. private String parentId;
  23. private String idDel;
  24. /**
  25. * @return the fdObjectid
  26. */
  27. public String getFdObjectid() {
  28. return fdObjectid;
  29. }
  30. /**
  31. * @param fdObjectid the fdObjectid to set
  32. */
  33. public void setFdObjectid(String fdObjectid) {
  34. this.fdObjectid = fdObjectid;
  35. }
  36. /**
  37. * @return the orgDeptName
  38. */
  39. public String getOrgDeptName() {
  40. return orgDeptName;
  41. }
  42. /**
  43. * @param orgDeptName the orgDeptName to set
  44. */
  45. public void setOrgDeptName(String orgDeptName) {
  46. this.orgDeptName = orgDeptName;
  47. }
  48. /**
  49. * @return the orgDeptType
  50. */
  51. public String getOrgDeptType() {
  52. return orgDeptType;
  53. }
  54. /**
  55. * @param orgDeptType the orgDeptType to set
  56. */
  57. public void setOrgDeptType(String orgDeptType) {
  58. this.orgDeptType = orgDeptType;
  59. }
  60. /**
  61. * @return the linkDept
  62. */
  63. public String getLinkDept() {
  64. return linkDept;
  65. }
  66. /**
  67. * @param linkDept the linkDept to set
  68. */
  69. public void setLinkDept(String linkDept) {
  70. this.linkDept = linkDept;
  71. }
  72. /**
  73. * @return the linkMan
  74. */
  75. public String getLinkMan() {
  76. return linkMan;
  77. }
  78. /**
  79. * @param linkMan the linkMan to set
  80. */
  81. public void setLinkMan(String linkMan) {
  82. this.linkMan = linkMan;
  83. }
  84. /**
  85. * @return the code
  86. */
  87. public String getCode() {
  88. return code;
  89. }
  90. /**
  91. * @param code the code to set
  92. */
  93. public void setCode(String code) {
  94. this.code = code;
  95. }
  96. /**
  97. * @return the site
  98. */
  99. public String getSite() {
  100. return site;
  101. }
  102. /**
  103. * @param site the site to set
  104. */
  105. public void setSite(String site) {
  106. this.site = site;
  107. }
  108. /**
  109. * @return the location
  110. */
  111. public String getLocation() {
  112. return location;
  113. }
  114. /**
  115. * @param location the location to set
  116. */
  117. public void setLocation(String location) {
  118. this.location = location;
  119. }
  120. /**
  121. * @return the workAddress
  122. */
  123. public String getWorkAddress() {
  124. return workAddress;
  125. }
  126. /**
  127. * @param workAddress the workAddress to set
  128. */
  129. public void setWorkAddress(String workAddress) {
  130. this.workAddress = workAddress;
  131. }
  132. /**
  133. * @return the updateDate
  134. */
  135. public String getUpdateDate() {
  136. return updateDate;
  137. }
  138. /**
  139. * @param updateDate the updateDate to set
  140. */
  141. public void setUpdateDate(String updateDate) {
  142. this.updateDate = updateDate;
  143. }
  144. /**
  145. * @return the deptId
  146. */
  147. public String getDeptId() {
  148. return deptId;
  149. }
  150. /**
  151. * @param deptId the deptId to set
  152. */
  153. public void setDeptId(String deptId) {
  154. this.deptId = deptId;
  155. }
  156. /**
  157. * @return the parentId
  158. */
  159. public String getParentId() {
  160. return parentId;
  161. }
  162. /**
  163. * @param parentId the parentId to set
  164. */
  165. public void setParentId(String parentId) {
  166. this.parentId = parentId;
  167. }
  168. /**
  169. * @return the idDel
  170. */
  171. public String getIdDel() {
  172. return idDel;
  173. }
  174. /**
  175. * @param idDel the idDel to set
  176. */
  177. public void setIdDel(String idDel) {
  178. this.idDel = idDel;
  179. }
  180. /* (non-Javadoc)
  181. * @see java.lang.Object#toString()
  182. */
  183. @Override
  184. public String toString() {
  185. return "OrgOutDeptVo [fdObjectid=" + fdObjectid + ", orgDeptName="
  186. + orgDeptName + ", orgDeptType=" + orgDeptType + ", linkDept="
  187. + linkDept + ", linkMan=" + linkMan + ", code=" + code
  188. + ", site=" + site + ", location=" + location
  189. + ", workAddress=" + workAddress + ", updateDate=" + updateDate
  190. + ", deptId=" + deptId + ", parentId=" + parentId + ", idDel="
  191. + idDel + "]";
  192. }
  193. }