79ac16bf055f85537dbaf5a9edf43ece6a37c018.svn-base 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. * BisInspHystpRunParam
  9. *
  10. * @author lhc
  11. * @date 2022-3-23
  12. */
  13. public class BisInspHystpRunParam extends PageParam implements Serializable {
  14. // 数据状态(0:正常;9:删除)
  15. @ApiParam(name = "数据状态(0:正常;9:删除)")
  16. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  17. private String dataStat;
  18. // 状态
  19. @ApiParam(name = "状态")
  20. @ApiModelProperty(value = "状态", name = "state")
  21. private String state;
  22. // 其中持证上岗人数: 人
  23. @ApiParam(name = "其中持证上岗人数: 人")
  24. @ApiModelProperty(value = "其中持证上岗人数: 人", name = "powDutyNum")
  25. private Long powDutyNum;
  26. // 记录人员ID
  27. @ApiParam(name = "记录人员ID")
  28. @ApiModelProperty(value = "记录人员ID", name = "persId")
  29. private String persId;
  30. // 创建时间
  31. @ApiParam(name = "创建时间")
  32. @ApiModelProperty(value = "创建时间", name = "intm")
  33. private Date intm;
  34. // 最后修改时间
  35. @ApiParam(name = "最后修改时间")
  36. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  37. private Date uptm;
  38. // 备注
  39. @ApiParam(name = "备注")
  40. @ApiModelProperty(value = "备注", name = "note")
  41. private String note;
  42. // 主键ID
  43. @ApiParam(name = "主键ID")
  44. @ApiModelProperty(value = "主键ID", name = "id")
  45. private String id;
  46. // 登记表ID
  47. @ApiParam(name = "登记表ID")
  48. @ApiModelProperty(value = "登记表ID", name = "rgstrId")
  49. private String rgstrId;
  50. // 电站日常运行、检修人员数量
  51. @ApiParam(name = "电站日常运行、检修人员数量")
  52. @ApiModelProperty(value = "电站日常运行、检修人员数量", name = "powPersNum")
  53. private Long powPersNum;
  54. public BisInspHystpRunParam() {
  55. }
  56. public String getDataStat() {
  57. return dataStat;
  58. }
  59. public void setDataStat(String dataStat) {
  60. this.dataStat = dataStat;
  61. }
  62. public String getState() {
  63. return state;
  64. }
  65. public void setState(String state) {
  66. this.state = state;
  67. }
  68. public Long getPowDutyNum() {
  69. return powDutyNum;
  70. }
  71. public void setPowDutyNum(Long powDutyNum) {
  72. this.powDutyNum = powDutyNum;
  73. }
  74. public String getPersId() {
  75. return persId;
  76. }
  77. public void setPersId(String persId) {
  78. this.persId = persId;
  79. }
  80. public Date getIntm() {
  81. return intm;
  82. }
  83. public void setIntm(Date intm) {
  84. this.intm = intm;
  85. }
  86. public Date getUptm() {
  87. return uptm;
  88. }
  89. public void setUptm(Date uptm) {
  90. this.uptm = uptm;
  91. }
  92. public String getNote() {
  93. return note;
  94. }
  95. public void setNote(String note) {
  96. this.note = note;
  97. }
  98. public String getId() {
  99. return id;
  100. }
  101. public void setId(String id) {
  102. this.id = id;
  103. }
  104. public String getRgstrId() {
  105. return rgstrId;
  106. }
  107. public void setRgstrId(String rgstrId) {
  108. this.rgstrId = rgstrId;
  109. }
  110. public Long getPowPersNum() {
  111. return powPersNum;
  112. }
  113. public void setPowPersNum(Long powPersNum) {
  114. this.powPersNum = powPersNum;
  115. }
  116. }