| package com.dy.pipIrrGlobal.voPr; | 
|   | 
| import com.dy.common.po.BaseEntity; | 
| import com.fasterxml.jackson.annotation.JsonPropertyOrder; | 
| import com.fasterxml.jackson.databind.annotation.JsonSerialize; | 
| import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; | 
| import io.swagger.v3.oas.annotations.media.Schema; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * @Author: liurunyu | 
|  * @Date: 2025/6/24 17:11 | 
|  * @Description | 
|  */ | 
| @Data | 
| @JsonPropertyOrder({ "id", "fboxId", "no", "name", "lng", "lat", "remark"}) | 
| @Schema(title = "气象站值对象") | 
| public class VoWeather implements BaseEntity { | 
|     private static final long serialVersionUID = 202506241715003L; | 
|     /** | 
|      * 主键 | 
|      */ | 
|     @JsonSerialize(using = ToStringSerializer.class) | 
|     @Schema(title = "气象站ID") | 
|     public Long id; | 
|   | 
|     /** | 
|      * FBox序列号 | 
|      */ | 
|     @Schema(title = "FBox序列号") | 
|     public String fboxId ; | 
|   | 
|     /** | 
|      * 水肥站编号 | 
|      */ | 
|     @Schema(title = "编号") | 
|     public Integer no ; | 
|   | 
|     /** | 
|      * 水肥站名称 | 
|      */ | 
|     @Schema(title = "名称") | 
|     public String name; | 
|   | 
|     /** | 
|      * 经度 | 
|      */ | 
|     @Schema(title = "经度") | 
|     public Double lng; | 
|   | 
|     /** | 
|      * 纬度 | 
|      */ | 
|     @Schema(title = "纬度") | 
|     public Double lat; | 
|   | 
|     /** | 
|      * 备注 | 
|      */ | 
|     @Schema(title = "备注") | 
|     public String remark; | 
|   | 
| } |