a9c86a80ba567c359c36c12c7aa57a89de123a11.svn-base 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. public class CwsParam extends PageParam {
  5. @ApiModelProperty(value = "行政区编码", required = true)
  6. private String adCode;
  7. private String name;
  8. private String engType;
  9. private String engStat;
  10. @ApiModelProperty(value = "登记表id", required = true)
  11. private String regstrId;
  12. @ApiModelProperty("团登记表id")
  13. private String regmId;
  14. @ApiModelProperty("人饮工程code,多个用分号分隔")
  15. private String cwsIds;
  16. @ApiModelProperty("类型")
  17. private String type;
  18. @ApiModelProperty("人员ID")
  19. private String persId;
  20. public String getRegmId() {
  21. return regmId;
  22. }
  23. public void setRegmId(String regmId) {
  24. this.regmId = regmId;
  25. }
  26. public String getEngStat() {
  27. return engStat;
  28. }
  29. public void setEngStat(String engStat) {
  30. this.engStat = engStat;
  31. }
  32. public String getPersId() {
  33. return persId;
  34. }
  35. public void setPersId(String persId) {
  36. this.persId = persId;
  37. }
  38. public String getType() {
  39. return type;
  40. }
  41. public void setType(String type) {
  42. this.type = type;
  43. }
  44. public String getRegstrId() {
  45. return regstrId;
  46. }
  47. public void setRegstrId(String regstrId) {
  48. this.regstrId = regstrId;
  49. }
  50. public String getCwsIds() {
  51. return cwsIds;
  52. }
  53. public void setCwsIds(String cwsIds) {
  54. this.cwsIds = cwsIds;
  55. }
  56. public String getAdCode() {
  57. return adCode;
  58. }
  59. public void setAdCode(String adCode) {
  60. this.adCode = adCode;
  61. }
  62. public String getName() {
  63. return name;
  64. }
  65. public void setName(String name) {
  66. this.name = name;
  67. }
  68. public String getEngType() {
  69. return engType;
  70. }
  71. public void setEngType(String engType) {
  72. this.engType = engType;
  73. }
  74. }