4fd9a1541fd8a1ef5a11d6dd5071bee9626df1b1.svn-base 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. * BisInspPlanDtlAddvcdParam
  9. *
  10. * @author hjp
  11. * @date 2022-8-9
  12. */
  13. public class BisInspPlanDtlAddvcdParam 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 = "planDtlId")
  21. private String planDtlId;
  22. // 所在行政区代码
  23. @ApiParam(name = "所在行政区代码")
  24. @ApiModelProperty(value = "所在行政区代码", name = "adCode")
  25. private String adCode;
  26. // 所在地行政区
  27. @ApiParam(name = "所在地行政区")
  28. @ApiModelProperty(value = "所在地行政区", name = "adName")
  29. private String adName;
  30. // 行政区等级 3市 4 县
  31. @ApiParam(name = "行政区等级 3市 4 县")
  32. @ApiModelProperty(value = "行政区等级 3市 4 县", name = "adGrad")
  33. private String adGrad;
  34. // 创建人
  35. @ApiParam(name = "创建人")
  36. @ApiModelProperty(value = "创建人", name = "persId")
  37. private String persId;
  38. // 创建时间
  39. @ApiParam(name = "创建时间")
  40. @ApiModelProperty(value = "创建时间", name = "intm")
  41. private Date intm;
  42. // 修改时间
  43. @ApiParam(name = "修改时间")
  44. @ApiModelProperty(value = "修改时间", name = "uptm")
  45. private Date uptm;
  46. // 数据状态
  47. @ApiParam(name = "数据状态")
  48. @ApiModelProperty(value = "数据状态", name = "dataStat")
  49. private String dataStat;
  50. public BisInspPlanDtlAddvcdParam() {
  51. }
  52. public BisInspPlanDtlAddvcdParam(String planDtlId) {
  53. this.planDtlId = planDtlId;
  54. }
  55. public String getId() {
  56. return id;
  57. }
  58. public void setId(String id) {
  59. this.id = id;
  60. }
  61. public String getPlanDtlId() {
  62. return planDtlId;
  63. }
  64. public void setPlanDtlId(String planDtlId) {
  65. this.planDtlId = planDtlId;
  66. }
  67. public String getAdCode() {
  68. return adCode;
  69. }
  70. public void setAdCode(String adCode) {
  71. this.adCode = adCode;
  72. }
  73. public String getAdName() {
  74. return adName;
  75. }
  76. public void setAdName(String adName) {
  77. this.adName = adName;
  78. }
  79. public String getAdGrad() {
  80. return adGrad;
  81. }
  82. public void setAdGrad(String adGrad) {
  83. this.adGrad = adGrad;
  84. }
  85. public String getPersId() {
  86. return persId;
  87. }
  88. public void setPersId(String persId) {
  89. this.persId = persId;
  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. public String getDataStat() {
  104. return dataStat;
  105. }
  106. public void setDataStat(String dataStat) {
  107. this.dataStat = dataStat;
  108. }
  109. }