| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- package cn.com.goldenwater.dcproj.param;
- import io.swagger.annotations.ApiModelProperty;
- public class KeyPblmParams {
- @ApiModelProperty(value = "问题序号,查询方式未1-20:必填", required = true)
- private String sn;
- @ApiModelProperty(value = "附件序号,参数如1,2或者1-8:必填", required = true)
- private String attach;
- @ApiModelProperty(value = "附件类型,水利工程运行,水利工程建设,传中文")
- private String attachType;
- @ApiModelProperty("附件类型:1水利工程运行,2水利工程建设")
- private String proType;
- @ApiModelProperty(value = "问题类型,如合同问题,违规行为等(必传)", required = true)
- private String pblmType;
- @ApiModelProperty("问题类别")
- private String inspPblmsName;
- @ApiModelProperty("检查项")
- private String checkPoint;
- @ApiModelProperty(value = "单位类型:如监理单位等等,水利工程运行不需要", required = false)
- private String sheetName;
- @ApiModelProperty("单位性质id")
- private String orgType;
- @ApiModelProperty("质量缺陷类型")
- private String className;
- @ApiModelProperty("版本号")
- private String version;
- @ApiModelProperty("问题描述")
- private String pblmDesc;
- public String getPblmDesc() {
- return pblmDesc;
- }
- public void setPblmDesc(String pblmDesc) {
- this.pblmDesc = pblmDesc;
- }
- public String getVersion() {
- return version;
- }
- public void setVersion(String version) {
- this.version = version;
- }
- public String getClassName() {
- return className;
- }
- public void setClassName(String className) {
- this.className = className;
- }
- public String getProType() {
- return proType;
- }
- public void setProType(String proType) {
- this.proType = proType;
- }
- public String getOrgType() {
- return orgType;
- }
- public void setOrgType(String orgType) {
- this.orgType = orgType;
- }
- public String getCheckPoint() {
- return checkPoint;
- }
- public void setCheckPoint(String checkPoint) {
- this.checkPoint = checkPoint;
- }
- public String getSheetName() {
- return sheetName;
- }
- public void setSheetName(String sheetName) {
- this.sheetName = sheetName;
- }
- public String getInspPblmsName() {
- return inspPblmsName;
- }
- public void setInspPblmsName(String inspPblmsName) {
- this.inspPblmsName = inspPblmsName;
- }
- public String getAttachType() {
- return attachType;
- }
- public void setAttachType(String attachType) {
- this.attachType = attachType;
- }
- public String getPblmType() {
- return pblmType;
- }
- public void setPblmType(String pblmType) {
- this.pblmType = pblmType;
- }
- public String getSn() {
- return sn;
- }
- public void setSn(String sn) {
- this.sn = sn;
- }
- public String getAttach() {
- return attach;
- }
- public void setAttach(String attach) {
- this.attach = attach;
- }
- }
|