| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- 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 + "]";
- }
- }
|