2e24ba3292435c10579b624d209cc3484e9cfefc.svn-base 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. * BisInspRlrwBdiParam
  9. *
  10. * @author lhc
  11. * @date 2021-1-19
  12. */
  13. public class BisInspRlrwBdiParam 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 = "isBeoRet")
  25. private String isBeoRet;
  26. // 当IS_BEO_RET字段选1时,即往年退地存在复耕现象时,此字段必填
  27. @ApiParam(name = "当IS_BEO_RET字段选1时,即往年退地存在复耕现象时,此字段必填")
  28. @ApiModelProperty(value = "当IS_BEO_RET字段选1时,即往年退地存在复耕现象时,此字段必填", name = "repFlArea")
  29. private Double repFlArea;
  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. // 填报状态(0:未填报;1:填报中;2:已填报)
  43. @ApiParam(name = "填报状态(0:未填报;1:填报中;2:已填报)")
  44. @ApiModelProperty(value = "填报状态(0:未填报;1:填报中;2:已填报)", name = "state")
  45. private String state;
  46. // 数据状态(0:正常;9:删除)
  47. @ApiParam(name = "数据状态(0:正常;9:删除)")
  48. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  49. private String dataStat;
  50. public BisInspRlrwBdiParam() {
  51. }
  52. public String getId() {
  53. return id;
  54. }
  55. public void setId(String id) {
  56. this.id = id;
  57. }
  58. public String getRgstrId() {
  59. return rgstrId;
  60. }
  61. public void setRgstrId(String rgstrId) {
  62. this.rgstrId = rgstrId;
  63. }
  64. public String getIsBeoRet() {
  65. return isBeoRet;
  66. }
  67. public void setIsBeoRet(String isBeoRet) {
  68. this.isBeoRet = isBeoRet;
  69. }
  70. public Double getRepFlArea() {
  71. return repFlArea;
  72. }
  73. public void setRepFlArea(Double repFlArea) {
  74. this.repFlArea = repFlArea;
  75. }
  76. public String getPersId() {
  77. return persId;
  78. }
  79. public void setPersId(String persId) {
  80. this.persId = persId;
  81. }
  82. public Date getIntm() {
  83. return intm;
  84. }
  85. public void setIntm(Date intm) {
  86. this.intm = intm;
  87. }
  88. public Date getUptm() {
  89. return uptm;
  90. }
  91. public void setUptm(Date uptm) {
  92. this.uptm = uptm;
  93. }
  94. public String getState() {
  95. return state;
  96. }
  97. public void setState(String state) {
  98. this.state = state;
  99. }
  100. public String getDataStat() {
  101. return dataStat;
  102. }
  103. public void setDataStat(String dataStat) {
  104. this.dataStat = dataStat;
  105. }
  106. }