| New file | 
 |  |  | 
 |  |  | package com.dy.pipIrrGlobal.voAllRound; | 
 |  |  |  | 
 |  |  | import com.alibaba.fastjson2.annotation.JSONField; | 
 |  |  | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonPropertyOrder; | 
 |  |  | import lombok.Data; | 
 |  |  |  | 
 |  |  | import java.util.Date; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @Author: liurunyu | 
 |  |  |  * @Date: 2025/2/5 10:14 | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  | @Data | 
 |  |  | @JsonPropertyOrder({ "intakeId", "dt", "amount", "money", "times" }) | 
 |  |  | public class VoArIntakeAmountDay { | 
 |  |  |     public static final long serialVersionUID = 202502051005003L; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 取水口ID | 
 |  |  |      */ | 
 |  |  |     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
 |  |  |     public Long intakeId; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 日期 | 
 |  |  |      */ | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     public Date dt ; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 用水量 | 
 |  |  |      */ | 
 |  |  |     public Double amount ; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 用水消费金额 | 
 |  |  |      */ | 
 |  |  |     public Double money ; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 用水次数 | 
 |  |  |      */ | 
 |  |  |     public Integer times ; | 
 |  |  |  | 
 |  |  | } |