227691664be09fdf6a8d49060072fbdc31eb0756.svn-base 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * @author lhc
  9. * @date 2019/11/18 13:45
  10. */
  11. public class BisInspOffLineParam extends PageParam implements Serializable {
  12. // ID
  13. @ApiParam(name = "ID")
  14. @ApiModelProperty(value = "ID", name = "id")
  15. private String id;
  16. // 对象ID
  17. @ApiParam(name = "对象ID")
  18. @ApiModelProperty(value = "对象ID", name = "code")
  19. private String code;
  20. // 督查类型 '1','小型水库', '2','人饮工程', '3','水毁工程', '4','工程建设', '5','地下水', '7','运行管理', '6','水闸', '9','特定飞检', '10','其他填报', '11','淤地坝', '12','取水口','13','重要水源地', '14','分水及管控', '15','节水管理与评价', '16','用水单位抽查'
  21. @ApiParam(name = "督查类型 '1','小型水库', '2','人饮工程', '3','水毁工程', '4','工程建设', '5','地下水', '7','运行管理', '6','水闸', '9','特定飞检', '10','其他填报', '11','淤地坝', '12','取水口','13','重要水源地', '14','分水及管控', '15','节水管理与评价', '16','用水单位抽查'")
  22. @ApiModelProperty(value = "督查类型 '1','小型水库', '2','人饮工程', '3','水毁工程', '4','工程建设', '5','地下水', '7','运行管理', '6','水闸', '9','特定飞检', '10','其他填报', '11','淤地坝', '12','取水口','13','重要水源地', '14','分水及管控', '15','节水管理与评价', '16','用水单位抽查'", name = "ptype")
  23. private String ptype;
  24. // 对象名称
  25. @ApiParam(name = "对象名称")
  26. @ApiModelProperty(value = "对象名称", name = "name")
  27. private String name;
  28. // 农饮类型,1 人饮村 2 水源地 3 饮水工程 4 用水户 5 责任落实 6水利工程运行情况
  29. @ApiParam(name = "农饮类型,1 人饮村 2 水源地 3 饮水工程 4 用水户 5 责任落实 6水利工程运行情况")
  30. @ApiModelProperty(value = "农饮类型,1 人饮村 2 水源地 3 饮水工程 4 用水户 5 责任落实 6水利工程运行情况", name = "villType")
  31. private String villType;
  32. // 组ID
  33. @ApiParam(name = "组ID")
  34. @ApiModelProperty(value = "组ID", name = "groupId")
  35. private String groupId;
  36. // 所属行政区
  37. @ApiParam(name = "所属行政区")
  38. @ApiModelProperty(value = "所属行政区", name = "addvcd")
  39. private String addvcd;
  40. // 创建人
  41. @ApiParam(name = "创建人")
  42. @ApiModelProperty(value = "创建人", name = "persId")
  43. private String persId;
  44. // 插入时间
  45. @ApiParam(name = "插入时间")
  46. @ApiModelProperty(value = "插入时间", name = "intm")
  47. private Date intm;
  48. // 修改时间
  49. @ApiParam(name = "修改时间")
  50. @ApiModelProperty(value = "修改时间", name = "uptm")
  51. private Date uptm;
  52. // 数据状态(0:正常;9:删除)
  53. @ApiParam(name = "数据状态(0:正常;9:删除)")
  54. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  55. private String dataStat;
  56. public BisInspOffLineParam() {
  57. }
  58. public String getId() {
  59. return id;
  60. }
  61. public void setId(String id) {
  62. this.id = id;
  63. }
  64. public String getCode() {
  65. return code;
  66. }
  67. public void setCode(String code) {
  68. this.code = code;
  69. }
  70. public String getPtype() {
  71. return ptype;
  72. }
  73. public void setPtype(String ptype) {
  74. this.ptype = ptype;
  75. }
  76. public String getName() {
  77. return name;
  78. }
  79. public void setName(String name) {
  80. this.name = name;
  81. }
  82. public String getVillType() {
  83. return villType;
  84. }
  85. public void setVillType(String villType) {
  86. this.villType = villType;
  87. }
  88. public String getGroupId() {
  89. return groupId;
  90. }
  91. public void setGroupId(String groupId) {
  92. this.groupId = groupId;
  93. }
  94. public String getAddvcd() {
  95. return addvcd;
  96. }
  97. public void setAddvcd(String addvcd) {
  98. this.addvcd = addvcd;
  99. }
  100. public String getPersId() {
  101. return persId;
  102. }
  103. public void setPersId(String persId) {
  104. this.persId = persId;
  105. }
  106. public Date getIntm() {
  107. return intm;
  108. }
  109. public void setIntm(Date intm) {
  110. this.intm = intm;
  111. }
  112. public Date getUptm() {
  113. return uptm;
  114. }
  115. public void setUptm(Date uptm) {
  116. this.uptm = uptm;
  117. }
  118. public String getDataStat() {
  119. return dataStat;
  120. }
  121. public void setDataStat(String dataStat) {
  122. this.dataStat = dataStat;
  123. }
  124. }