| | |
| | | package com.dy.pipIrrGlobal.voSt; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonPropertyOrder; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | |
| | | */ |
| | | |
| | | @Data |
| | | @JsonPropertyOrder({ "intakeId", "intakeNum", "blockName", "lng", "lat" |
| | | ,"cumulativeFlow" , "getDate" |
| | | }) |
| | | @EqualsAndHashCode(callSuper=false) |
| | | public class VoCumulativeFlow extends VoIntake { |
| | | |
| | | /** |
| | | * 累计流量 |
| | | */ |
| | | private Double cumulativeFlow; |
| | | public Double cumulativeFlow; |
| | | |
| | | /** |
| | | * 数据获取日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date getDate; |
| | | public Date getDate; |
| | | } |