fa1e21bf15a53e8cbade1735506dfc2631332e0f.svn-base 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. * BisInspPblmDutyParam
  9. *
  10. * @author lhc
  11. * @date 2023-3-13
  12. */
  13. public class BisInspPblmDutyParam 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 = "pblmId")
  21. private String pblmId;
  22. // 责任单位性质(汉字)
  23. @ApiParam(name = "责任单位性质(汉字)")
  24. @ApiModelProperty(value = "责任单位性质(汉字)", name = "dutyType")
  25. private String dutyType;
  26. // 责任单位名称
  27. @ApiParam(name = "责任单位名称")
  28. @ApiModelProperty(value = "责任单位名称", name = "dutyName")
  29. private String dutyName;
  30. // 记录人员ID
  31. @ApiParam(name = "记录人员ID")
  32. @ApiModelProperty(value = "记录人员ID", name = "persId")
  33. private String persId;
  34. // 创建时间
  35. @ApiParam(name = "创建时间")
  36. @ApiModelProperty(value = "创建时间", name = "intm")
  37. private Date intm;
  38. // 最后修改时间
  39. @ApiParam(name = "最后修改时间")
  40. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  41. private Date uptm;
  42. // 备注
  43. @ApiParam(name = "备注")
  44. @ApiModelProperty(value = "备注", name = "note")
  45. private String note;
  46. // 数据状态
  47. @ApiParam(name = "数据状态")
  48. @ApiModelProperty(value = "数据状态", name = "dataStat")
  49. private String dataStat;
  50. private String dutyId;
  51. private String sectPers;
  52. public String getDutyId() {
  53. return dutyId;
  54. }
  55. public void setDutyId(String dutyId) {
  56. this.dutyId = dutyId;
  57. }
  58. public String getSectPers() {
  59. return sectPers;
  60. }
  61. public void setSectPers(String sectPers) {
  62. this.sectPers = sectPers;
  63. }
  64. public BisInspPblmDutyParam() {
  65. }
  66. public String getId() {
  67. return id;
  68. }
  69. public void setId(String id) {
  70. this.id = id;
  71. }
  72. public String getPblmId() {
  73. return pblmId;
  74. }
  75. public void setPblmId(String pblmId) {
  76. this.pblmId = pblmId;
  77. }
  78. public String getDutyType() {
  79. return dutyType;
  80. }
  81. public void setDutyType(String dutyType) {
  82. this.dutyType = dutyType;
  83. }
  84. public String getDutyName() {
  85. return dutyName;
  86. }
  87. public void setDutyName(String dutyName) {
  88. this.dutyName = dutyName;
  89. }
  90. public String getPersId() {
  91. return persId;
  92. }
  93. public void setPersId(String persId) {
  94. this.persId = persId;
  95. }
  96. public Date getIntm() {
  97. return intm;
  98. }
  99. public void setIntm(Date intm) {
  100. this.intm = intm;
  101. }
  102. public Date getUptm() {
  103. return uptm;
  104. }
  105. public void setUptm(Date uptm) {
  106. this.uptm = uptm;
  107. }
  108. public String getNote() {
  109. return note;
  110. }
  111. public void setNote(String note) {
  112. this.note = note;
  113. }
  114. public String getDataStat() {
  115. return dataStat;
  116. }
  117. public void setDataStat(String dataStat) {
  118. this.dataStat = dataStat;
  119. }
  120. }