f5289a9eba51ec955ef37a40c292b82d82588149.svn-base 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package cn.com.goldenwater.dcproj.param;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class CountryParam {
  4. @ApiModelProperty(value = "行政村codes,多个用分号分隔", required = true)
  5. private String codes;
  6. @ApiModelProperty(value = "乡镇名称", required = true)
  7. private String townName;
  8. @ApiModelProperty(value = "登记表id", required = true)
  9. private String regstrId;
  10. @ApiModelProperty("用户ID")
  11. private String persId;
  12. public String getPersId() {
  13. return persId;
  14. }
  15. public void setPersId(String persId) {
  16. this.persId = persId;
  17. }
  18. public String getTownName() {
  19. return townName;
  20. }
  21. public void setTownName(String townName) {
  22. this.townName = townName;
  23. }
  24. public String getCodes() {
  25. return codes;
  26. }
  27. public void setCodes(String codes) {
  28. this.codes = codes;
  29. }
  30. public String getRegstrId() {
  31. return regstrId;
  32. }
  33. public void setRegstrId(String regstrId) {
  34. this.regstrId = regstrId;
  35. }
  36. }