6f03719ae501063128102fed1d8b744610e75b3f.svn-base 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspPblmPlistLogParam
  9. *
  10. * @author lhc
  11. * @date 2020-11-4
  12. */
  13. public class BisInspPblmPlistLogParam extends PageParam implements Serializable {
  14. private String id;
  15. // 问题清单ID
  16. @ApiParam(name = "问题清单ID")
  17. @ApiModelProperty(value = "问题清单ID", name = "pblmClistId")
  18. private String pblmClistId;
  19. // 操作机构ID
  20. @ApiParam(name = "操作机构ID")
  21. @ApiModelProperty(value = "操作机构ID", name = "orgId")
  22. private String orgId;
  23. // 操作机构名称
  24. @ApiParam(name = "操作机构名称")
  25. @ApiModelProperty(value = "操作机构名称", name = "orgNm")
  26. private String orgNm;
  27. // 操作人ID
  28. @ApiParam(name = "操作人ID")
  29. @ApiModelProperty(value = "操作人ID", name = "persId")
  30. private String persId;
  31. // 操作人姓名
  32. @ApiParam(name = "操作人姓名")
  33. @ApiModelProperty(value = "操作人姓名", name = "persName")
  34. private String persName;
  35. // 状态
  36. @ApiParam(name = "状态")
  37. @ApiModelProperty(value = "状态", name = "state")
  38. private String state;
  39. // 状态描述
  40. @ApiParam(name = "状态描述")
  41. @ApiModelProperty(value = "状态描述", name = "stateNote")
  42. private String stateNote;
  43. // 备注 | 驳回原因
  44. @ApiParam(name = "备注 | 驳回原因")
  45. @ApiModelProperty(value = "备注 | 驳回原因", name = "note")
  46. private String note;
  47. // 创建时间
  48. @ApiParam(name = "创建时间")
  49. @ApiModelProperty(value = "创建时间", name = "intm")
  50. private Date intm;
  51. // 修改时间
  52. @ApiParam(name = "修改时间")
  53. @ApiModelProperty(value = "修改时间", name = "uptm")
  54. private Date uptm;
  55. // 数据状态(0:正常;9:删除)
  56. @ApiParam(name = "数据状态(0:正常;9:删除)")
  57. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  58. private String dataStat;
  59. public BisInspPblmPlistLogParam() {
  60. }
  61. public String getId() {
  62. return id;
  63. }
  64. public void setId(String id) {
  65. this.id = id;
  66. }
  67. public String getPblmClistId() {
  68. return pblmClistId;
  69. }
  70. public void setPblmClistId(String pblmClistId) {
  71. this.pblmClistId = pblmClistId;
  72. }
  73. @Override
  74. public String getOrgId() {
  75. return orgId;
  76. }
  77. @Override
  78. public void setOrgId(String orgId) {
  79. this.orgId = orgId;
  80. }
  81. public String getOrgNm() {
  82. return orgNm;
  83. }
  84. public void setOrgNm(String orgNm) {
  85. this.orgNm = orgNm;
  86. }
  87. public String getPersId() {
  88. return persId;
  89. }
  90. public void setPersId(String persId) {
  91. this.persId = persId;
  92. }
  93. public String getPersName() {
  94. return persName;
  95. }
  96. public void setPersName(String persName) {
  97. this.persName = persName;
  98. }
  99. public String getState() {
  100. return state;
  101. }
  102. public void setState(String state) {
  103. this.state = state;
  104. }
  105. public String getStateNote() {
  106. return stateNote;
  107. }
  108. public void setStateNote(String stateNote) {
  109. this.stateNote = stateNote;
  110. }
  111. public String getNote() {
  112. return note;
  113. }
  114. public void setNote(String note) {
  115. this.note = note;
  116. }
  117. public Date getIntm() {
  118. return intm;
  119. }
  120. public void setIntm(Date intm) {
  121. this.intm = intm;
  122. }
  123. public Date getUptm() {
  124. return uptm;
  125. }
  126. public void setUptm(Date uptm) {
  127. this.uptm = uptm;
  128. }
  129. public String getDataStat() {
  130. return dataStat;
  131. }
  132. public void setDataStat(String dataStat) {
  133. this.dataStat = dataStat;
  134. }
  135. }