57837dc3d110fc1249333782b64abfed6e0623dc.svn-base 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package cn.com.goldenwater.dcproj.param;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class KeyPblmParams {
  4. @ApiModelProperty(value = "问题序号,查询方式未1-20:必填", required = true)
  5. private String sn;
  6. @ApiModelProperty(value = "附件序号,参数如1,2或者1-8:必填", required = true)
  7. private String attach;
  8. @ApiModelProperty(value = "附件类型,水利工程运行,水利工程建设,传中文")
  9. private String attachType;
  10. @ApiModelProperty("附件类型:1水利工程运行,2水利工程建设")
  11. private String proType;
  12. @ApiModelProperty(value = "问题类型,如合同问题,违规行为等(必传)", required = true)
  13. private String pblmType;
  14. @ApiModelProperty("问题类别")
  15. private String inspPblmsName;
  16. @ApiModelProperty("检查项")
  17. private String checkPoint;
  18. @ApiModelProperty(value = "单位类型:如监理单位等等,水利工程运行不需要", required = false)
  19. private String sheetName;
  20. @ApiModelProperty("单位性质id")
  21. private String orgType;
  22. @ApiModelProperty("质量缺陷类型")
  23. private String className;
  24. @ApiModelProperty("版本号")
  25. private String version;
  26. @ApiModelProperty("问题描述")
  27. private String pblmDesc;
  28. public String getPblmDesc() {
  29. return pblmDesc;
  30. }
  31. public void setPblmDesc(String pblmDesc) {
  32. this.pblmDesc = pblmDesc;
  33. }
  34. public String getVersion() {
  35. return version;
  36. }
  37. public void setVersion(String version) {
  38. this.version = version;
  39. }
  40. public String getClassName() {
  41. return className;
  42. }
  43. public void setClassName(String className) {
  44. this.className = className;
  45. }
  46. public String getProType() {
  47. return proType;
  48. }
  49. public void setProType(String proType) {
  50. this.proType = proType;
  51. }
  52. public String getOrgType() {
  53. return orgType;
  54. }
  55. public void setOrgType(String orgType) {
  56. this.orgType = orgType;
  57. }
  58. public String getCheckPoint() {
  59. return checkPoint;
  60. }
  61. public void setCheckPoint(String checkPoint) {
  62. this.checkPoint = checkPoint;
  63. }
  64. public String getSheetName() {
  65. return sheetName;
  66. }
  67. public void setSheetName(String sheetName) {
  68. this.sheetName = sheetName;
  69. }
  70. public String getInspPblmsName() {
  71. return inspPblmsName;
  72. }
  73. public void setInspPblmsName(String inspPblmsName) {
  74. this.inspPblmsName = inspPblmsName;
  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 getSn() {
  89. return sn;
  90. }
  91. public void setSn(String sn) {
  92. this.sn = sn;
  93. }
  94. public String getAttach() {
  95. return attach;
  96. }
  97. public void setAttach(String attach) {
  98. this.attach = attach;
  99. }
  100. }