3ca102edeab5122a3d8a1429c236f4909f3cd8d8.svn-base 2.9 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. * AttGnrlSectBaseParam
  9. *
  10. * @author lhc
  11. * @date 2023-3-15
  12. */
  13. public class AttGnrlSectBaseParam 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 = "gnrlId")
  21. private String gnrlId;
  22. // 单位性质
  23. @ApiParam(name = "单位性质")
  24. @ApiModelProperty(value = "单位性质", name = "sectType")
  25. private String sectType;
  26. // 单位名称
  27. @ApiParam(name = "单位名称")
  28. @ApiModelProperty(value = "单位名称", name = "sectName")
  29. private String sectName;
  30. // 人员
  31. @ApiParam(name = "人员")
  32. @ApiModelProperty(value = "人员", name = "sectPers")
  33. private String sectPers;
  34. // 记录人员ID
  35. @ApiParam(name = "记录人员ID")
  36. @ApiModelProperty(value = "记录人员ID", 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 AttGnrlSectBaseParam() {
  51. }
  52. public String getId() {
  53. return id;
  54. }
  55. public void setId(String id) {
  56. this.id = id;
  57. }
  58. public String getGnrlId() {
  59. return gnrlId;
  60. }
  61. public void setGnrlId(String gnrlId) {
  62. this.gnrlId = gnrlId;
  63. }
  64. public String getSectType() {
  65. return sectType;
  66. }
  67. public void setSectType(String sectType) {
  68. this.sectType = sectType;
  69. }
  70. public String getSectName() {
  71. return sectName;
  72. }
  73. public void setSectName(String sectName) {
  74. this.sectName = sectName;
  75. }
  76. public String getSectPers() {
  77. return sectPers;
  78. }
  79. public void setSectPers(String sectPers) {
  80. this.sectPers = sectPers;
  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. }