| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrGlobal.voSt; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.alibaba.fastjson2.annotation.JSONField; | 
|---|
|  |  |  | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonPropertyOrder; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author ZhuBaoMin | 
|---|
|  |  |  | * @date 2024-08-01 14:03 | 
|---|
|  |  |  | * @LastEditTime 2024-08-01 14:03 | 
|---|
|  |  |  | * @Description 取水口统计结果视图对象 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @JsonPropertyOrder({ "intakeId", "intakeNum", "blockName", "lng", "lat"}) | 
|---|
|  |  |  | public class VoIntake { | 
|---|
|  |  |  | private static final long serialVersionUID = 202408311404001L; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 取水口ID | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | public Long intakeId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 取水口编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public String intakeNum; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 取水口所属片区 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public String blockName; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 取水口经度 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Double lng ; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 取水口纬度 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Double lat ; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|