ec41908152fa8a7993339a98594eadda4a48690e.svn-base 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. * BisInspHystpOthrParam
  9. *
  10. * @author lhc
  11. * @date 2022-3-23
  12. */
  13. public class BisInspHystpOthrParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 登记表ID
  19. @ApiParam(name = "登记表ID")
  20. @ApiModelProperty(value = "登记表ID", name = "rgstrId")
  21. private String rgstrId;
  22. // 其他需要 说明的情况
  23. @ApiParam(name = "其他需要 说明的情况")
  24. @ApiModelProperty(value = "其他需要 说明的情况", name = "note")
  25. private String note;
  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. // 数据状态(0:正常;9:删除)
  39. @ApiParam(name = "数据状态(0:正常;9:删除)")
  40. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  41. private String dataStat;
  42. // 状态
  43. @ApiParam(name = "状态")
  44. @ApiModelProperty(value = "状态", name = "state")
  45. private String state;
  46. public BisInspHystpOthrParam() {
  47. }
  48. public String getId() {
  49. return id;
  50. }
  51. public void setId(String id) {
  52. this.id = id;
  53. }
  54. public String getRgstrId() {
  55. return rgstrId;
  56. }
  57. public void setRgstrId(String rgstrId) {
  58. this.rgstrId = rgstrId;
  59. }
  60. public String getNote() {
  61. return note;
  62. }
  63. public void setNote(String note) {
  64. this.note = note;
  65. }
  66. public String getPersId() {
  67. return persId;
  68. }
  69. public void setPersId(String persId) {
  70. this.persId = persId;
  71. }
  72. public Date getIntm() {
  73. return intm;
  74. }
  75. public void setIntm(Date intm) {
  76. this.intm = intm;
  77. }
  78. public Date getUptm() {
  79. return uptm;
  80. }
  81. public void setUptm(Date uptm) {
  82. this.uptm = uptm;
  83. }
  84. public String getDataStat() {
  85. return dataStat;
  86. }
  87. public void setDataStat(String dataStat) {
  88. this.dataStat = dataStat;
  89. }
  90. public String getState() {
  91. return state;
  92. }
  93. public void setState(String state) {
  94. this.state = state;
  95. }
  96. }