| | |
| | | package com.dy.pipIrrGlobal.voSt; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonPropertyOrder; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | |
| | | * @Description |
| | | */ |
| | | @Data |
| | | public class VoIntakeUnReported { |
| | | |
| | | /** |
| | | * 取水口编号 |
| | | */ |
| | | private String intakeNum; |
| | | @JsonPropertyOrder({ "intakeId", "intakeNum", "blockName", "lng", "lat" |
| | | ,"rtuAddr" |
| | | }) |
| | | @EqualsAndHashCode(callSuper=false) |
| | | public class VoIntakeUnReported extends VoIntake{ |
| | | /** |
| | | * 阀控器地址 |
| | | */ |
| | | private String rtuAddr; |
| | | /** |
| | | * 阀控器时间 |
| | | */ |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private String rtuDt; |
| | | public String rtuAddr; |
| | | |
| | | } |