5f4ea05f18c9049c6d6a5bde92ea38337b98e1f0.svn-base 2.6 KB

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