6d6efb13e16aa08769caf1af7c9c266729985153.svn-base 3.0 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. * BisInspPlanMonthAreaParam
  9. *
  10. * @author lhc
  11. * @date 2022-4-21
  12. */
  13. public class BisInspPlanMonthAreaParam 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 = "planMonth")
  21. private String planMonth;
  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. // 数据状态(0:正常;9:删除)
  47. @ApiParam(name = "数据状态(0:正常;9:删除)")
  48. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  49. private String dataStat;
  50. public BisInspPlanMonthAreaParam() {
  51. }
  52. public String getId() {
  53. return id;
  54. }
  55. public void setId(String id) {
  56. this.id = id;
  57. }
  58. public String getPlanMonth() {
  59. return planMonth;
  60. }
  61. public void setPlanMonth(String planMonth) {
  62. this.planMonth = planMonth;
  63. }
  64. public String getAdCode() {
  65. return adCode;
  66. }
  67. public void setAdCode(String adCode) {
  68. this.adCode = adCode;
  69. }
  70. public String getAdName() {
  71. return adName;
  72. }
  73. public void setAdName(String adName) {
  74. this.adName = adName;
  75. }
  76. public String getAdGrad() {
  77. return adGrad;
  78. }
  79. public void setAdGrad(String adGrad) {
  80. this.adGrad = adGrad;
  81. }
  82. public String getPersId() {
  83. return persId;
  84. }
  85. public void setPersId(String persId) {
  86. this.persId = persId;
  87. }
  88. public Date getIntm() {
  89. return intm;
  90. }
  91. public void setIntm(Date intm) {
  92. this.intm = intm;
  93. }
  94. public Date getUptm() {
  95. return uptm;
  96. }
  97. public void setUptm(Date uptm) {
  98. this.uptm = uptm;
  99. }
  100. public String getDataStat() {
  101. return dataStat;
  102. }
  103. public void setDataStat(String dataStat) {
  104. this.dataStat = dataStat;
  105. }
  106. }