New file |
| | |
| | | package com.dy.pipIrrGlobal.voAllRound; |
| | | |
| | | import com.alibaba.fastjson2.annotation.JSONField; |
| | | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; |
| | | import com.fasterxml.jackson.annotation.JsonPropertyOrder; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @Author: liurunyu |
| | | * @Date: 2025/2/5 10:04 |
| | | * @Description |
| | | */ |
| | | @Data |
| | | @JsonPropertyOrder({ "intakeId", "dt", "loss" }) |
| | | public class VoArIntakeLossMonth { |
| | | public static final long serialVersionUID = 202502051005001L; |
| | | |
| | | /** |
| | | * 取水口ID |
| | | */ |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | public Long intakeId; |
| | | |
| | | /** |
| | | * 月份(格式: yyyy-mm) |
| | | */ |
| | | public String dt ; |
| | | |
| | | /** |
| | | * 日漏损量 |
| | | */ |
| | | public Double loss ; |
| | | } |