2c6d299881f2db7e5c7c6f8088db8c680ecbe7a8.svn-base 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import io.swagger.annotations.ApiModelProperty;
  4. public class DocType extends BaseBean {
  5. @ApiModelProperty("问题id拼接")
  6. private String pblmIds;
  7. private String villType;
  8. @ApiModelProperty("严重等级")
  9. private String inspPblmCate;
  10. @ApiModelProperty("是否典型,1典型,0非典型")
  11. private String ifCasePblm;
  12. private String startTime;
  13. @ApiModelProperty("查询时间")
  14. private String findTime;
  15. @ApiModelProperty("结束时间")
  16. private String endTime;
  17. @ApiModelProperty("是否存在多媒体,1是,0否")
  18. private String hasVedio;
  19. @ApiModelProperty("数据类型")
  20. private String pType;
  21. @ApiModelProperty("172工程条件:0违规,1质量,2合同")
  22. private String problemType;
  23. public String getProblemType() {
  24. return problemType;
  25. }
  26. public void setProblemType(String problemType) {
  27. this.problemType = problemType;
  28. }
  29. public String getPblmIds() {
  30. return pblmIds;
  31. }
  32. public void setPblmIds(String pblmIds) {
  33. this.pblmIds = pblmIds;
  34. }
  35. private String persId;
  36. public String getPersId() {
  37. return persId;
  38. }
  39. public void setPersId(String persId) {
  40. this.persId = persId;
  41. }
  42. public String getVillType() {
  43. return villType;
  44. }
  45. public void setVillType(String villType) {
  46. this.villType = villType;
  47. }
  48. public String getInspPblmCate() {
  49. return inspPblmCate;
  50. }
  51. public void setInspPblmCate(String inspPblmCate) {
  52. this.inspPblmCate = inspPblmCate;
  53. }
  54. public String getIfCasePblm() {
  55. return ifCasePblm;
  56. }
  57. public void setIfCasePblm(String ifCasePblm) {
  58. this.ifCasePblm = ifCasePblm;
  59. }
  60. public String getStartTime() {
  61. return startTime;
  62. }
  63. public void setStartTime(String startTime) {
  64. this.startTime = startTime;
  65. }
  66. public String getFindTime() {
  67. return findTime;
  68. }
  69. public void setFindTime(String findTime) {
  70. this.findTime = findTime;
  71. }
  72. public String getEndTime() {
  73. return endTime;
  74. }
  75. public void setEndTime(String endTime) {
  76. this.endTime = endTime;
  77. }
  78. public String getHasVedio() {
  79. return hasVedio;
  80. }
  81. public void setHasVedio(String hasVedio) {
  82. this.hasVedio = hasVedio;
  83. }
  84. public String getpType() {
  85. return pType;
  86. }
  87. public void setpType(String pType) {
  88. this.pType = pType;
  89. }
  90. }