20b24289bc08520809d8e7b4df0e4378b5ef5913.svn-base 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. /**
  5. * Created by 61618 on 2019/4/2.
  6. */
  7. public class InGroupGrwParam extends PageParam {
  8. @ApiModelProperty(value = "测站编码")
  9. private String stcd;
  10. @ApiModelProperty(value = "测站名称")
  11. private String stnm;
  12. @ApiModelProperty(value = "行政区划编码")
  13. private String adcd;
  14. @ApiModelProperty(value = "行政区划名称")
  15. private String adnm;
  16. @ApiModelProperty(value = "组ID")
  17. private String groupId;
  18. @ApiModelProperty(value = "测站类型")
  19. private String sttp;
  20. public String getSttp() {
  21. return sttp;
  22. }
  23. public void setSttp(String sttp) {
  24. this.sttp = sttp;
  25. }
  26. public String getGroupId() {
  27. return groupId;
  28. }
  29. public void setGroupId(String groupId) {
  30. this.groupId = groupId;
  31. }
  32. public String getStcd() {
  33. return stcd;
  34. }
  35. public void setStcd(String stcd) {
  36. this.stcd = stcd;
  37. }
  38. public String getStnm() {
  39. return stnm;
  40. }
  41. public void setStnm(String stnm) {
  42. this.stnm = stnm;
  43. }
  44. public String getAdcd() {
  45. return adcd;
  46. }
  47. public void setAdcd(String adcd) {
  48. this.adcd = adcd;
  49. }
  50. public String getAdnm() {
  51. return adnm;
  52. }
  53. public void setAdnm(String adnm) {
  54. this.adnm = adnm;
  55. }
  56. @Override
  57. public String toString() {
  58. return "InGroupGrwParam{" +
  59. "stcd='" + stcd + '\'' +
  60. ", stnm='" + stnm + '\'' +
  61. ", adcd='" + adcd + '\'' +
  62. ", adnm='" + adnm + '\'' +
  63. '}';
  64. }
  65. }