211c1656da27f5ba6b9d8acdcad792ef24cc2d8c.svn-base 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. * BisInspYearInfoParam
  9. * 年度计划批次组数据信息
  10. * BIS_INSP_YEAR_INFO
  11. * @author lhc
  12. * @date 2023年4月6日
  13. */
  14. public class BisInspYearInfoParam extends PageParam implements Serializable {
  15. // 主键ID
  16. @ApiParam(name = "主键ID")
  17. @ApiModelProperty(value = "主键ID", name = "id")
  18. private String id;
  19. // 所属机构ID
  20. @ApiParam(name = "所属机构ID")
  21. @ApiModelProperty(value = "所属机构ID", name = "orgId")
  22. private String orgId;
  23. // 所属行政区划编码
  24. @ApiParam(name = "所属行政区划编码")
  25. @ApiModelProperty(value = "所属行政区划编码", name = "adCode")
  26. private String adCode;
  27. // 年度
  28. @ApiParam(name = "年度")
  29. @ApiModelProperty(value = "年度", name = "year")
  30. private Long year;
  31. // 派出批次数
  32. @ApiParam(name = "派出批次数")
  33. @ApiModelProperty(value = "派出批次数", name = "yearBath")
  34. private Long yearBath;
  35. // 排出督查组数
  36. @ApiParam(name = "排出督查组数")
  37. @ApiModelProperty(value = "排出督查组数", name = "yearGroup")
  38. private Long yearGroup;
  39. // 操作(记录)人ID
  40. @ApiParam(name = "操作(记录)人ID")
  41. @ApiModelProperty(value = "操作(记录)人ID", name = "persId")
  42. private String persId;
  43. // 查看(创建)时间
  44. @ApiParam(name = "查看(创建)时间")
  45. @ApiModelProperty(value = "查看(创建)时间", name = "intm")
  46. private Date intm;
  47. // 最后修改时间
  48. @ApiParam(name = "最后修改时间")
  49. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  50. private Date uptm;
  51. // 备注
  52. @ApiParam(name = "备注")
  53. @ApiModelProperty(value = "备注", name = "note")
  54. private String note;
  55. // 数据状态
  56. @ApiParam(name = "数据状态")
  57. @ApiModelProperty(value = "数据状态", name = "dataStat")
  58. private String dataStat;
  59. public BisInspYearInfoParam() {
  60. }
  61. public String getId() {
  62. return id;
  63. }
  64. public void setId(String id) {
  65. this.id = id;
  66. }
  67. @Override
  68. public String getOrgId() {
  69. return orgId;
  70. }
  71. @Override
  72. public void setOrgId(String orgId) {
  73. this.orgId = orgId;
  74. }
  75. public String getAdCode() {
  76. return adCode;
  77. }
  78. public void setAdCode(String adCode) {
  79. this.adCode = adCode;
  80. }
  81. public Long getYear() {
  82. return year;
  83. }
  84. public void setYear(Long year) {
  85. this.year = year;
  86. }
  87. public Long getYearBath() {
  88. return yearBath;
  89. }
  90. public void setYearBath(Long yearBath) {
  91. this.yearBath = yearBath;
  92. }
  93. public Long getYearGroup() {
  94. return yearGroup;
  95. }
  96. public void setYearGroup(Long yearGroup) {
  97. this.yearGroup = yearGroup;
  98. }
  99. public String getPersId() {
  100. return persId;
  101. }
  102. public void setPersId(String persId) {
  103. this.persId = persId;
  104. }
  105. public Date getIntm() {
  106. return intm;
  107. }
  108. public void setIntm(Date intm) {
  109. this.intm = intm;
  110. }
  111. public Date getUptm() {
  112. return uptm;
  113. }
  114. public void setUptm(Date uptm) {
  115. this.uptm = uptm;
  116. }
  117. public String getNote() {
  118. return note;
  119. }
  120. public void setNote(String note) {
  121. this.note = note;
  122. }
  123. public String getDataStat() {
  124. return dataStat;
  125. }
  126. public void setDataStat(String dataStat) {
  127. this.dataStat = dataStat;
  128. }
  129. }