25f6249c5dbce55c3c4fb23204293c58bad01d8a.svn-base 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import cn.com.goldenwater.core.model.BaseBean;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. /**
  8. * entity:AttWiuWatCons
  9. *
  10. * @author lune
  11. * @date 2019-8-8
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttWiuWatCons extends BaseBean implements Serializable {
  15. @ApiModelProperty("主键ID")
  16. private String id;
  17. @ApiModelProperty("取水户ID")
  18. private String wiuId;
  19. @ApiModelProperty("年度")
  20. private String year;
  21. @ApiModelProperty("年度类型(1:自然年;2:调度年)")
  22. private String yearType;
  23. @ApiModelProperty("取水量(万m3/年)")
  24. private Double watCons;
  25. @ApiModelProperty("数据获得方式(1:计量;2:估算)")
  26. private String dataType;
  27. @ApiModelProperty("创建时间")
  28. private Date inTm;
  29. @ApiModelProperty("更新时间")
  30. private Date upTm;
  31. public AttWiuWatCons() {
  32. }
  33. public String getId() {
  34. return id;
  35. }
  36. public void setId(String id) {
  37. this.id = id;
  38. }
  39. public String getWiuId() {
  40. return wiuId;
  41. }
  42. public void setWiuId(String wiuId) {
  43. this.wiuId = wiuId;
  44. }
  45. public String getYear() {
  46. return year;
  47. }
  48. public void setYear(String year) {
  49. this.year = year;
  50. }
  51. public String getYearType() {
  52. return yearType;
  53. }
  54. public void setYearType(String yearType) {
  55. this.yearType = yearType;
  56. }
  57. public Double getWatCons() {
  58. return watCons;
  59. }
  60. public void setWatCons(Double watCons) {
  61. this.watCons = watCons;
  62. }
  63. public String getDataType() {
  64. return dataType;
  65. }
  66. public void setDataType(String dataType) {
  67. this.dataType = dataType;
  68. }
  69. public Date getInTm() {
  70. return inTm;
  71. }
  72. public void setInTm(Date inTm) {
  73. this.inTm = inTm;
  74. }
  75. public Date getUpTm() {
  76. return upTm;
  77. }
  78. public void setUpTm(Date upTm) {
  79. this.upTm = upTm;
  80. }
  81. @Override
  82. public String toString() {
  83. return "AttWiuWatCons [" + "id=" + id + ", wiuId=" + wiuId + ", year=" + year + ", yearType=" + yearType + ", watCons=" + watCons + ", dataType=" + dataType + ", inTm=" + inTm + ", upTm=" + upTm + "]";
  84. }
  85. }