6e4fda00dc0038f6c1047a59b741ed964cb8022a.svn-base 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import cn.com.goldenwater.core.model.BaseBean;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. /**
  7. * entity:ObjKeyPblms
  8. *
  9. * @author lune
  10. * @date 2019-4-28
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class ObjKeyPblms extends BaseBean implements Serializable {
  14. @ApiModelProperty(" 唯一标识")
  15. private String id;
  16. @ApiModelProperty(" 序号")
  17. private String sn;
  18. @ApiModelProperty(" 附件类型")
  19. private String attachType;
  20. @ApiModelProperty(" 问题类型")
  21. private String pblmType;
  22. @ApiModelProperty(" 附件号")
  23. private String attach;
  24. @ApiModelProperty(" sheet号")
  25. private String sheet;
  26. @ApiModelProperty(" sheet文件名称")
  27. private String sheetName;
  28. @ApiModelProperty(" 检查问题名称")
  29. private String inspPblmsName;
  30. @ApiModelProperty(" 检查项")
  31. private String checkPoint;
  32. @ApiModelProperty(" 问题描述")
  33. private String pblmDesc;
  34. @ApiModelProperty(" 问题严重程度")
  35. private String inspPblmCate;
  36. private String attachName;
  37. @ApiModelProperty("质量缺陷类型")
  38. private String className;
  39. public String getAttachName() {
  40. return attachName;
  41. }
  42. public void setAttachName(String attachName) {
  43. this.attachName = attachName;
  44. }
  45. public ObjKeyPblms() {
  46. }
  47. public String getClassName() {
  48. return className;
  49. }
  50. public void setClassName(String className) {
  51. this.className = className;
  52. }
  53. public String getId() {
  54. return id;
  55. }
  56. public void setId(String id) {
  57. this.id = id;
  58. }
  59. public String getSn() {
  60. return sn;
  61. }
  62. public void setSn(String sn) {
  63. this.sn = sn;
  64. }
  65. public String getAttachType() {
  66. return attachType;
  67. }
  68. public void setAttachType(String attachType) {
  69. this.attachType = attachType;
  70. }
  71. public String getPblmType() {
  72. return pblmType;
  73. }
  74. public void setPblmType(String pblmType) {
  75. this.pblmType = pblmType;
  76. }
  77. public String getAttach() {
  78. return attach;
  79. }
  80. public void setAttach(String attach) {
  81. this.attach = attach;
  82. }
  83. public String getSheet() {
  84. return sheet;
  85. }
  86. public void setSheet(String sheet) {
  87. this.sheet = sheet;
  88. }
  89. public String getSheetName() {
  90. return sheetName;
  91. }
  92. public void setSheetName(String sheetName) {
  93. this.sheetName = sheetName;
  94. }
  95. public String getInspPblmsName() {
  96. return inspPblmsName;
  97. }
  98. public void setInspPblmsName(String inspPblmsName) {
  99. this.inspPblmsName = inspPblmsName;
  100. }
  101. public String getCheckPoint() {
  102. return checkPoint;
  103. }
  104. public void setCheckPoint(String checkPoint) {
  105. this.checkPoint = checkPoint;
  106. }
  107. public String getPblmDesc() {
  108. return pblmDesc;
  109. }
  110. public void setPblmDesc(String pblmDesc) {
  111. this.pblmDesc = pblmDesc;
  112. }
  113. public String getInspPblmCate() {
  114. return inspPblmCate;
  115. }
  116. public void setInspPblmCate(String inspPblmCate) {
  117. this.inspPblmCate = inspPblmCate;
  118. }
  119. @Override
  120. public String toString() {
  121. return "ObjKeyPblms [" + "id=" + id + ", sn=" + sn + ", attachType=" + attachType + ", pblmType=" + pblmType + ", attach=" + attach + ", sheet=" + sheet + ", sheetName=" + sheetName + ", inspPblmsName=" + inspPblmsName + ", checkPoint=" + checkPoint + ", pblmDesc=" + pblmDesc + ", inspPblmCate=" + inspPblmCate + "]";
  122. }
  123. }