| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrGlobal.voSpecial; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 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/10 9:13 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @JsonPropertyOrder({"id", | 
|---|
|  |  |  | "intakeId", | 
|---|
|  |  |  | "intakeNum", | 
|---|
|  |  |  | "intakeLng", | 
|---|
|  |  |  | "intakeLat", | 
|---|
|  |  |  | "amount" | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | public class VoTopXIntake { | 
|---|
|  |  |  | private static final long serialVersionUID = 202502100913001L; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 数据记录id(开关阀记录) | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | public Long id ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 农户ID | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | public Long intakeId; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 取水口编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public String intakeNum; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 取水口经度 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Double intakeLng; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 取水口纬度 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Double intakeLat; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 用水量 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Double amount; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|