| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package cn.com.goldenwater.dcproj.param;
- import io.swagger.annotations.ApiModelProperty;
- public class KeyRegParam {
- @ApiModelProperty("单位性质编码")
- private String orgType;
- @ApiModelProperty("工程类型")
- private String proType;
- @ApiModelProperty("单位性质,中文")
- private String reviOrg;
- @ApiModelProperty("督查类型")
- private String ptype;
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public String getReviOrg() {
- return reviOrg;
- }
- public void setReviOrg(String reviOrg) {
- this.reviOrg = reviOrg;
- }
- public String getOrgType() {
- return orgType;
- }
- public void setOrgType(String orgType) {
- this.orgType = orgType;
- }
- public String getProType() {
- return proType;
- }
- public void setProType(String proType) {
- this.proType = proType;
- }
- }
|