000268e9a791c98cf3871f34110f9df9e9ca5c92.svn-base 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * BisInspRsfcoRgstrAoeparoParam
  8. *
  9. * @author lune
  10. * @date 2020-4-22
  11. */
  12. public class BisInspRsfcoRgstrAoeparoParam extends PageParam implements Serializable {
  13. @ApiModelProperty("主键ID")
  14. private String id;
  15. @ApiModelProperty("水库督查登记ID")
  16. private String rgstrId;
  17. @ApiModelProperty("存在问题原因分析")
  18. private String pblmCasNls;
  19. @ApiModelProperty("整改意见")
  20. private String rctfOptn;
  21. @ApiModelProperty("备注")
  22. private String note;
  23. @ApiModelProperty("填报状态(0:未填报;1:填报中;2:已填报)")
  24. private String status;
  25. @ApiModelProperty("记录人员ID")
  26. private String recPersId;
  27. @ApiModelProperty("记录人员")
  28. private String recPers;
  29. @ApiModelProperty("记录人员电话")
  30. private String recPersTel;
  31. @ApiModelProperty("创建时间")
  32. private Date intm;
  33. @ApiModelProperty("修改时间")
  34. private Date uptm;
  35. public BisInspRsfcoRgstrAoeparoParam() {
  36. }
  37. public String getId() {
  38. return id;
  39. }
  40. public void setId(String id) {
  41. this.id = id;
  42. }
  43. public String getRgstrId() {
  44. return rgstrId;
  45. }
  46. public void setRgstrId(String rgstrId) {
  47. this.rgstrId = rgstrId;
  48. }
  49. public String getPblmCasNls() {
  50. return pblmCasNls;
  51. }
  52. public void setPblmCasNls(String pblmCasNls) {
  53. this.pblmCasNls = pblmCasNls;
  54. }
  55. public String getRctfOptn() {
  56. return rctfOptn;
  57. }
  58. public void setRctfOptn(String rctfOptn) {
  59. this.rctfOptn = rctfOptn;
  60. }
  61. public String getNote() {
  62. return note;
  63. }
  64. public void setNote(String note) {
  65. this.note = note;
  66. }
  67. public String getStatus() {
  68. return status;
  69. }
  70. public void setStatus(String status) {
  71. this.status = status;
  72. }
  73. public String getRecPersId() {
  74. return recPersId;
  75. }
  76. public void setRecPersId(String recPersId) {
  77. this.recPersId = recPersId;
  78. }
  79. public String getRecPers() {
  80. return recPers;
  81. }
  82. public void setRecPers(String recPers) {
  83. this.recPers = recPers;
  84. }
  85. public String getRecPersTel() {
  86. return recPersTel;
  87. }
  88. public void setRecPersTel(String recPersTel) {
  89. this.recPersTel = recPersTel;
  90. }
  91. public Date getIntm() {
  92. return intm;
  93. }
  94. public void setIntm(Date intm) {
  95. this.intm = intm;
  96. }
  97. public Date getUptm() {
  98. return uptm;
  99. }
  100. public void setUptm(Date uptm) {
  101. this.uptm = uptm;
  102. }
  103. }