| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- public class CwsParam extends PageParam {
- @ApiModelProperty(value = "行政区编码", required = true)
- private String adCode;
- private String name;
- private String engType;
- private String engStat;
- @ApiModelProperty(value = "登记表id", required = true)
- private String regstrId;
- @ApiModelProperty("团登记表id")
- private String regmId;
- @ApiModelProperty("人饮工程code,多个用分号分隔")
- private String cwsIds;
- @ApiModelProperty("类型")
- private String type;
- @ApiModelProperty("人员ID")
- private String persId;
- public String getRegmId() {
- return regmId;
- }
- public void setRegmId(String regmId) {
- this.regmId = regmId;
- }
- public String getEngStat() {
- return engStat;
- }
- public void setEngStat(String engStat) {
- this.engStat = engStat;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getRegstrId() {
- return regstrId;
- }
- public void setRegstrId(String regstrId) {
- this.regstrId = regstrId;
- }
- public String getCwsIds() {
- return cwsIds;
- }
- public void setCwsIds(String cwsIds) {
- this.cwsIds = cwsIds;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getEngType() {
- return engType;
- }
- public void setEngType(String engType) {
- this.engType = engType;
- }
- }
|