d135e1ce05c36dcde5f96c9b20a4302f26d13cbd.svn-base 4.3 KB

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