| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:AttWiuWatCons
- *
- * @author lune
- * @date 2019-8-8
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class AttWiuWatCons extends BaseBean implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("取水户ID")
- private String wiuId;
- @ApiModelProperty("年度")
- private String year;
- @ApiModelProperty("年度类型(1:自然年;2:调度年)")
- private String yearType;
- @ApiModelProperty("取水量(万m3/年)")
- private Double watCons;
- @ApiModelProperty("数据获得方式(1:计量;2:估算)")
- private String dataType;
- @ApiModelProperty("创建时间")
- private Date inTm;
- @ApiModelProperty("更新时间")
- private Date upTm;
- public AttWiuWatCons() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getWiuId() {
- return wiuId;
- }
- public void setWiuId(String wiuId) {
- this.wiuId = wiuId;
- }
- public String getYear() {
- return year;
- }
- public void setYear(String year) {
- this.year = year;
- }
- public String getYearType() {
- return yearType;
- }
- public void setYearType(String yearType) {
- this.yearType = yearType;
- }
- public Double getWatCons() {
- return watCons;
- }
- public void setWatCons(Double watCons) {
- this.watCons = watCons;
- }
- public String getDataType() {
- return dataType;
- }
- public void setDataType(String dataType) {
- this.dataType = dataType;
- }
- public Date getInTm() {
- return inTm;
- }
- public void setInTm(Date inTm) {
- this.inTm = inTm;
- }
- public Date getUpTm() {
- return upTm;
- }
- public void setUpTm(Date upTm) {
- this.upTm = upTm;
- }
- @Override
- public String toString() {
- return "AttWiuWatCons [" + "id=" + id + ", wiuId=" + wiuId + ", year=" + year + ", yearType=" + yearType + ", watCons=" + watCons + ", dataType=" + dataType + ", inTm=" + inTm + ", upTm=" + upTm + "]";
- }
- }
|