| 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:14 | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  | @Data | 
 |  |  | @JsonPropertyOrder({ "intakeId", "pipIrr", "amount"}) | 
 |  |  | public class VoArIntakeAmountMonth { | 
 |  |  |     public static final long serialVersionUID = 202502051005004L; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 取水口ID | 
 |  |  |      */ | 
 |  |  |     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
 |  |  |     public Long intakeId; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 月份(格式: yyyy-mm) | 
 |  |  |      */ | 
 |  |  |     public String dt ; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 用水量 | 
 |  |  |      */ | 
 |  |  |     public Double amount ; | 
 |  |  |  | 
 |  |  | } |