Newer
Older
newfiber-data-adapter / src / main / java / org / springnewfiber / dataadapter / xf / entity / YsQData.java
package org.springnewfiber.dataadapter.xf.entity;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.math.BigDecimal;
@Data
public class YsQData extends BaseXfInterfaceEntity{
    @JsonProperty(value ="q")
    @ApiModelProperty(value = "水表1每小时水量(立方米/小时)")
    private BigDecimal SBL1;
    @JsonProperty(value ="cq1")
    @ApiModelProperty(value = "累计流量1(立方米)")
    private BigDecimal CQ1;
    @JsonProperty(value ="z")
    @ApiModelProperty(value = "瞬时河道水位、潮位(米)")
    private BigDecimal Z;
    @JsonProperty(value ="zt")
    @ApiModelProperty(value = "遥测站状态及报警信息")
    private String ZT;
    @JsonProperty(value ="va")
    @ApiModelProperty(value = "断面平均流速(米/秒)")
    private BigDecimal VA;
    @JsonProperty(value ="vt")
    @ApiModelProperty(value = "电源电压")
    private BigDecimal VT;
    @ApiModelProperty(value = "水深")
    @JsonProperty(value ="z")
    private BigDecimal ZB;
//     "SBL1" decimal(10,2) DEFAULT NULL COMMENT '水表1每小时水量(立方米/小时)',
//            "CQ1" decimal(20,5) DEFAULT NULL COMMENT '累计流量1(立方米)',
//            "Z" decimal(7,3) DEFAULT NULL COMMENT '瞬时河道水位、潮位(米)',
//            "ZT" varchar(100) DEFAULT NULL COMMENT '遥测站状态及报警信息',
//            "VA" decimal(5,3) DEFAULT NULL COMMENT '断面平均流速(米/秒)',
//            "VT" decimal(4,2) DEFAULT NULL COMMENT '电源电压',

}