12212f1c04568f92d3da0999980c4c3b3e06830a.svn-base 3.5 KB

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