391b1ec7577bce05ba19946d12158b4a8b57eebb.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. * BisInspLocalConfigParam
  9. *
  10. * @author lhc
  11. * @date 2022-1-10
  12. */
  13. public class BisInspLocalConfigParam extends PageParam implements Serializable {
  14. // ID
  15. @ApiParam(name = "ID")
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 直管县行政区代码
  19. @ApiParam(name = "直管县行政区代码")
  20. @ApiModelProperty(value = "直管县行政区代码", name = "adCode")
  21. private String adCode;
  22. // 直管县行政区名称
  23. @ApiParam(name = "直管县行政区名称")
  24. @ApiModelProperty(value = "直管县行政区名称", name = "adName")
  25. private String adName;
  26. // 创建时间
  27. @ApiParam(name = "创建时间")
  28. @ApiModelProperty(value = "创建时间", name = "intm")
  29. private Date intm;
  30. // 修改时间
  31. @ApiParam(name = "修改时间")
  32. @ApiModelProperty(value = "修改时间", name = "uptm")
  33. private Date uptm;
  34. // 数据状态(0:正常;9:删除)
  35. @ApiParam(name = "数据状态(0:正常;9:删除)")
  36. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  37. private String dataStat;
  38. public BisInspLocalConfigParam() {
  39. }
  40. public String getId() {
  41. return id;
  42. }
  43. public void setId(String id) {
  44. this.id = id;
  45. }
  46. public String getAdCode() {
  47. return adCode;
  48. }
  49. public void setAdCode(String adCode) {
  50. this.adCode = adCode;
  51. }
  52. public String getAdName() {
  53. return adName;
  54. }
  55. public void setAdName(String adName) {
  56. this.adName = adName;
  57. }
  58. public Date getIntm() {
  59. return intm;
  60. }
  61. public void setIntm(Date intm) {
  62. this.intm = intm;
  63. }
  64. public Date getUptm() {
  65. return uptm;
  66. }
  67. public void setUptm(Date uptm) {
  68. this.uptm = uptm;
  69. }
  70. public String getDataStat() {
  71. return dataStat;
  72. }
  73. public void setDataStat(String dataStat) {
  74. this.dataStat = dataStat;
  75. }
  76. }