db4b9aaa8799c47c39aefcdb2cde85bec586b6ee.svn-base 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. /**
  6. * Created by 61618 on 2019/4/12.
  7. */
  8. public class PersPositionBaseParam extends PageParam {
  9. @ApiParam(value = "行政区划code")
  10. @ApiModelProperty(value = "行政区划code")
  11. private String adCode;
  12. @ApiParam(value = "人员id")
  13. @ApiModelProperty(value = "人员id")
  14. private String persId;
  15. // 机构id
  16. @ApiParam(name = "机构id")
  17. @ApiModelProperty(value = "机构id")
  18. private String orgId;
  19. // 督查组id
  20. @ApiParam(name = "督查组id")
  21. @ApiModelProperty(value = "督查组id")
  22. private String groupId;
  23. // 人员姓名
  24. @ApiParam(name = "人员姓名")
  25. @ApiModelProperty(value = "人员姓名")
  26. private String persName;
  27. // 手机号
  28. @ApiParam(name = "手机号")
  29. @ApiModelProperty(value = "手机号")
  30. private String mobile;
  31. @ApiParam(name = "开始时间")
  32. @ApiModelProperty(value = "开始时间")
  33. private String sttm;
  34. @ApiParam(name = "结束时间")
  35. @ApiModelProperty(value = "结束时间")
  36. private String entm;
  37. public String getAdCode() {
  38. return adCode;
  39. }
  40. public void setAdCode(String adCode) {
  41. this.adCode = adCode;
  42. }
  43. public String getPersId() {
  44. return persId;
  45. }
  46. public void setPersId(String persId) {
  47. this.persId = persId;
  48. }
  49. @Override
  50. public String getOrgId() {
  51. return orgId;
  52. }
  53. @Override
  54. public void setOrgId(String orgId) {
  55. this.orgId = orgId;
  56. }
  57. public String getGroupId() {
  58. return groupId;
  59. }
  60. public void setGroupId(String groupId) {
  61. this.groupId = groupId;
  62. }
  63. public String getPersName() {
  64. return persName;
  65. }
  66. public void setPersName(String persName) {
  67. this.persName = persName;
  68. }
  69. public String getMobile() {
  70. return mobile;
  71. }
  72. public void setMobile(String mobile) {
  73. this.mobile = mobile;
  74. }
  75. public String getSttm() {
  76. return sttm;
  77. }
  78. public void setSttm(String sttm) {
  79. this.sttm = sttm;
  80. }
  81. public String getEntm() {
  82. return entm;
  83. }
  84. public void setEntm(String entm) {
  85. this.entm = entm;
  86. }
  87. @Override
  88. public String toString() {
  89. return "PersPositionBaseParam{" +
  90. "adCode='" + adCode + '\'' +
  91. ", persId='" + persId + '\'' +
  92. ", orgId='" + orgId + '\'' +
  93. ", groupId='" + groupId + '\'' +
  94. ", persName='" + persName + '\'' +
  95. ", mobile='" + mobile + '\'' +
  96. ", sttm='" + sttm + '\'' +
  97. ", entm='" + entm + '\'' +
  98. '}';
  99. }
  100. }