3dc55f595e7d066713be5624d2f997134fa1c108.svn-base 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. /**
  7. * entity:AttOrgDep
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  13. public class AttOrgDep extends BaseBean implements Serializable {
  14. private String guid;
  15. private String depName;
  16. private String orgGuid;
  17. private String legPers;
  18. private String legPersTel;
  19. private String safeManaPers;
  20. private String safeManaPersTel;
  21. private String ifRespSpm;
  22. private String ifRespAed;
  23. private String ifRespFsm;
  24. private String note;
  25. private Date ts;
  26. private String recPers;
  27. public AttOrgDep() {
  28. }
  29. public String getGuid() {
  30. return guid;
  31. }
  32. public void setGuid(String guid) {
  33. this.guid = guid;
  34. }
  35. public String getDepName() {
  36. return depName;
  37. }
  38. public void setDepName(String depName) {
  39. this.depName = depName;
  40. }
  41. public String getOrgGuid() {
  42. return orgGuid;
  43. }
  44. public void setOrgGuid(String orgGuid) {
  45. this.orgGuid = orgGuid;
  46. }
  47. public String getLegPers() {
  48. return legPers;
  49. }
  50. public void setLegPers(String legPers) {
  51. this.legPers = legPers;
  52. }
  53. public String getLegPersTel() {
  54. return legPersTel;
  55. }
  56. public void setLegPersTel(String legPersTel) {
  57. this.legPersTel = legPersTel;
  58. }
  59. public String getSafeManaPers() {
  60. return safeManaPers;
  61. }
  62. public void setSafeManaPers(String safeManaPers) {
  63. this.safeManaPers = safeManaPers;
  64. }
  65. public String getSafeManaPersTel() {
  66. return safeManaPersTel;
  67. }
  68. public void setSafeManaPersTel(String safeManaPersTel) {
  69. this.safeManaPersTel = safeManaPersTel;
  70. }
  71. public String getIfRespSpm() {
  72. return ifRespSpm;
  73. }
  74. public void setIfRespSpm(String ifRespSpm) {
  75. this.ifRespSpm = ifRespSpm;
  76. }
  77. public String getIfRespAed() {
  78. return ifRespAed;
  79. }
  80. public void setIfRespAed(String ifRespAed) {
  81. this.ifRespAed = ifRespAed;
  82. }
  83. public String getIfRespFsm() {
  84. return ifRespFsm;
  85. }
  86. public void setIfRespFsm(String ifRespFsm) {
  87. this.ifRespFsm = ifRespFsm;
  88. }
  89. public String getNote() {
  90. return note;
  91. }
  92. public void setNote(String note) {
  93. this.note = note;
  94. }
  95. public Date getTs() {
  96. return ts;
  97. }
  98. public void setTs(Date ts) {
  99. this.ts = ts;
  100. }
  101. public String getRecPers() {
  102. return recPers;
  103. }
  104. public void setRecPers(String recPers) {
  105. this.recPers = recPers;
  106. }
  107. @Override
  108. public String toString() {
  109. return "AttOrgDep [" + "guid=" + guid + ", depName=" + depName + ", orgGuid=" + orgGuid + ", legPers=" + legPers + ", legPersTel=" + legPersTel + ", safeManaPers=" + safeManaPers + ", safeManaPersTel=" + safeManaPersTel + ", ifRespSpm=" + ifRespSpm + ", ifRespAed=" + ifRespAed + ", ifRespFsm=" + ifRespFsm + ", note=" + note + ", ts=" + ts + ", recPers=" + recPers + "]";
  110. }
  111. }