package cn.com.goldenwater.dcproj.model; import java.io.Serializable; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; /** * entity:ObjKeyPblms * * @author lune * @date 2019-4-28 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class ObjKeyPblms extends BaseBean implements Serializable { @ApiModelProperty(" 唯一标识") private String id; @ApiModelProperty(" 序号") private String sn; @ApiModelProperty(" 附件类型") private String attachType; @ApiModelProperty(" 问题类型") private String pblmType; @ApiModelProperty(" 附件号") private String attach; @ApiModelProperty(" sheet号") private String sheet; @ApiModelProperty(" sheet文件名称") private String sheetName; @ApiModelProperty(" 检查问题名称") private String inspPblmsName; @ApiModelProperty(" 检查项") private String checkPoint; @ApiModelProperty(" 问题描述") private String pblmDesc; @ApiModelProperty(" 问题严重程度") private String inspPblmCate; private String attachName; @ApiModelProperty("质量缺陷类型") private String className; public String getAttachName() { return attachName; } public void setAttachName(String attachName) { this.attachName = attachName; } public ObjKeyPblms() { } public String getClassName() { return className; } public void setClassName(String className) { this.className = className; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getSn() { return sn; } public void setSn(String sn) { this.sn = sn; } 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 getAttach() { return attach; } public void setAttach(String attach) { this.attach = attach; } public String getSheet() { return sheet; } public void setSheet(String sheet) { this.sheet = sheet; } 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 getCheckPoint() { return checkPoint; } public void setCheckPoint(String checkPoint) { this.checkPoint = checkPoint; } public String getPblmDesc() { return pblmDesc; } public void setPblmDesc(String pblmDesc) { this.pblmDesc = pblmDesc; } public String getInspPblmCate() { return inspPblmCate; } public void setInspPblmCate(String inspPblmCate) { this.inspPblmCate = inspPblmCate; } @Override public String toString() { return "ObjKeyPblms [" + "id=" + id + ", sn=" + sn + ", attachType=" + attachType + ", pblmType=" + pblmType + ", attach=" + attach + ", sheet=" + sheet + ", sheetName=" + sheetName + ", inspPblmsName=" + inspPblmsName + ", checkPoint=" + checkPoint + ", pblmDesc=" + pblmDesc + ", inspPblmCate=" + inspPblmCate + "]"; } }