| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package cn.com.goldenwater.dcproj.param;
- import io.swagger.annotations.ApiModelProperty;
- public class CountryParam {
- @ApiModelProperty(value = "行政村codes,多个用分号分隔", required = true)
- private String codes;
- @ApiModelProperty(value = "乡镇名称", required = true)
- private String townName;
- @ApiModelProperty(value = "登记表id", required = true)
- private String regstrId;
- @ApiModelProperty("用户ID")
- private String persId;
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getTownName() {
- return townName;
- }
- public void setTownName(String townName) {
- this.townName = townName;
- }
- public String getCodes() {
- return codes;
- }
- public void setCodes(String codes) {
- this.codes = codes;
- }
- public String getRegstrId() {
- return regstrId;
- }
- public void setRegstrId(String regstrId) {
- this.regstrId = regstrId;
- }
- }
|