| | |
| | | |
| | | import com.alibaba.fastjson2.annotation.JSONField; |
| | | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; |
| | | import com.dy.pipIrrGlobal.voRm.VoLossDay; |
| | | import com.dy.pipIrrGlobal.voRm.VoOpenCloseValve; |
| | | import com.dy.pipIrrGlobal.voSt.VoDayIntakeAmount; |
| | | import com.dy.pipIrrGlobal.voSt.VoDayLoss; |
| | | import com.dy.pipIrrGlobal.voSt.VoMonthAmount; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonPropertyOrder; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Author: liurunyu |
| | |
| | | * @Description |
| | | */ |
| | | @Data |
| | | @JsonPropertyOrder({"id", "onLine", "alarm", "alarmDt", "lastOpenDt", "lastCloseDt"}) |
| | | @JsonPropertyOrder({"id", "onLine", "alarm", "alarmDt", "lastOpenDt", "lastCloseDt", "lossAmount", "lossDt"}) |
| | | public class VoArIntakeRemote { |
| | | private static final long serialVersionUID = 202501141703001L; |
| | | |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | public Date lastCloseDt ; |
| | | |
| | | /** |
| | | * 最后统计漏损量 |
| | | */ |
| | | public Double lossAmount ; |
| | | |
| | | /** |
| | | * 最后统计漏损日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | public Date lossDt ; |
| | | |
| | | /** |
| | | * 开关阀记录 |
| | | */ |
| | | public List<VoOpenCloseValve> openCloseRecords ; |
| | | |
| | | /** |
| | | * 日漏损记录 |
| | | */ |
| | | public List<VoDayLoss> lossDayRecords ; |
| | | |
| | | /** |
| | | * 月漏损记录 |
| | | */ |
| | | public List<VoMonthAmount> lossMonthRecords ; |
| | | |
| | | /** |
| | | * 日用水统计记录 |
| | | */ |
| | | public List<VoDayIntakeAmount> amountDayRecords ; |
| | | |
| | | /** |
| | | * 月用水统计记录 |
| | | */ |
| | | public List<VoMonthAmount> amountMonthRecords ; |
| | | |
| | | } |