| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * Created by 61618 on 2019/4/2.
- */
- public class InGroupGrwParam extends PageParam {
- @ApiModelProperty(value = "测站编码")
- private String stcd;
- @ApiModelProperty(value = "测站名称")
- private String stnm;
- @ApiModelProperty(value = "行政区划编码")
- private String adcd;
- @ApiModelProperty(value = "行政区划名称")
- private String adnm;
- @ApiModelProperty(value = "组ID")
- private String groupId;
- @ApiModelProperty(value = "测站类型")
- private String sttp;
- public String getSttp() {
- return sttp;
- }
- public void setSttp(String sttp) {
- this.sttp = sttp;
- }
- public String getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- public String getStcd() {
- return stcd;
- }
- public void setStcd(String stcd) {
- this.stcd = stcd;
- }
- public String getStnm() {
- return stnm;
- }
- public void setStnm(String stnm) {
- this.stnm = stnm;
- }
- public String getAdcd() {
- return adcd;
- }
- public void setAdcd(String adcd) {
- this.adcd = adcd;
- }
- public String getAdnm() {
- return adnm;
- }
- public void setAdnm(String adnm) {
- this.adnm = adnm;
- }
- @Override
- public String toString() {
- return "InGroupGrwParam{" +
- "stcd='" + stcd + '\'' +
- ", stnm='" + stnm + '\'' +
- ", adcd='" + adcd + '\'' +
- ", adnm='" + adnm + '\'' +
- '}';
- }
- }
|