3160e9eac169916138baa908477b3cf790b2c096.svn-base 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. * BisInspDstfldqhNoteParam
  9. *
  10. * @author lhc
  11. * @date 2021-6-10
  12. */
  13. public class BisInspDstfldqhNoteParam 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 = "loc")
  25. private String loc;
  26. // 督查方式 1现场暗访 2电话问讯 3影像核实 4 遥感远程分析 5其他
  27. @ApiParam(name = "督查方式 1现场暗访 2电话问讯 3影像核实 4 遥感远程分析 5其他")
  28. @ApiModelProperty(value = "督查方式 1现场暗访 2电话问讯 3影像核实 4 遥感远程分析 5其他", name = "chkType")
  29. private String chkType;
  30. // 是否如实填报水毁修复进度
  31. @ApiParam(name = "是否如实填报水毁修复进度")
  32. @ApiModelProperty(value = "是否如实填报水毁修复进度", name = "isRealPlan")
  33. private String isRealPlan;
  34. // *修复进度(%)
  35. @ApiParam(name = "*修复进度(%)")
  36. @ApiModelProperty(value = "*修复进度(%)", name = "palnPer")
  37. private String palnPer;
  38. // 检查日期
  39. @ApiParam(name = "检查日期")
  40. @ApiModelProperty(value = "检查日期", name = "chkTm")
  41. private Date chkTm;
  42. // 计划完成日期
  43. @ApiParam(name = "计划完成日期")
  44. @ApiModelProperty(value = "计划完成日期", name = "planTm")
  45. private Date planTm;
  46. // 完成时限
  47. @ApiParam(name = "完成时限")
  48. @ApiModelProperty(value = "完成时限", name = "ackTm")
  49. private String ackTm;
  50. // 记录人员ID
  51. @ApiParam(name = "记录人员ID")
  52. @ApiModelProperty(value = "记录人员ID", name = "persId")
  53. private String persId;
  54. // 创建时间
  55. @ApiParam(name = "创建时间")
  56. @ApiModelProperty(value = "创建时间", name = "intm")
  57. private Date intm;
  58. // 修改时间
  59. @ApiParam(name = "修改时间")
  60. @ApiModelProperty(value = "修改时间", name = "uptm")
  61. private Date uptm;
  62. // 数据状态(0:正常;9:删除)
  63. @ApiParam(name = "数据状态(0:正常;9:删除)")
  64. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  65. private String dataStat;
  66. public BisInspDstfldqhNoteParam() {
  67. }
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public String getRgstrId() {
  75. return rgstrId;
  76. }
  77. public void setRgstrId(String rgstrId) {
  78. this.rgstrId = rgstrId;
  79. }
  80. public String getLoc() {
  81. return loc;
  82. }
  83. public void setLoc(String loc) {
  84. this.loc = loc;
  85. }
  86. public String getChkType() {
  87. return chkType;
  88. }
  89. public void setChkType(String chkType) {
  90. this.chkType = chkType;
  91. }
  92. public String getIsRealPlan() {
  93. return isRealPlan;
  94. }
  95. public void setIsRealPlan(String isRealPlan) {
  96. this.isRealPlan = isRealPlan;
  97. }
  98. public String getPalnPer() {
  99. return palnPer;
  100. }
  101. public void setPalnPer(String palnPer) {
  102. this.palnPer = palnPer;
  103. }
  104. public Date getChkTm() {
  105. return chkTm;
  106. }
  107. public void setChkTm(Date chkTm) {
  108. this.chkTm = chkTm;
  109. }
  110. public Date getPlanTm() {
  111. return planTm;
  112. }
  113. public void setPlanTm(Date planTm) {
  114. this.planTm = planTm;
  115. }
  116. public String getAckTm() {
  117. return ackTm;
  118. }
  119. public void setAckTm(String ackTm) {
  120. this.ackTm = ackTm;
  121. }
  122. public String getPersId() {
  123. return persId;
  124. }
  125. public void setPersId(String persId) {
  126. this.persId = persId;
  127. }
  128. public Date getIntm() {
  129. return intm;
  130. }
  131. public void setIntm(Date intm) {
  132. this.intm = intm;
  133. }
  134. public Date getUptm() {
  135. return uptm;
  136. }
  137. public void setUptm(Date uptm) {
  138. this.uptm = uptm;
  139. }
  140. public String getDataStat() {
  141. return dataStat;
  142. }
  143. public void setDataStat(String dataStat) {
  144. this.dataStat = dataStat;
  145. }
  146. }