| package com.dy.pipIrrGlobal.pojoPr; | 
|   | 
| /** | 
|  * @Author: liurunyu | 
|  * @Date: 2025/6/17 16:10 | 
|  * @Description | 
|  */ | 
|   | 
| import com.alibaba.fastjson2.annotation.JSONField; | 
| import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.dy.common.po.BaseEntity; | 
| import io.swagger.v3.oas.annotations.media.Schema; | 
| import lombok.*; | 
|   | 
| /** | 
|  * 气象站 | 
|  */ | 
| @TableName(value="pr_st_weather", autoResultMap = true) | 
| @Data | 
| @Builder | 
| @ToString | 
| @NoArgsConstructor | 
| @AllArgsConstructor | 
| @Schema(name = "气象站") | 
| public class PrStWeather implements BaseEntity { | 
|   | 
|     public static final long serialVersionUID = 202506171615003L; | 
|     /** | 
|     * 主键 | 
|     */ | 
|     @Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED) | 
|     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|     @TableId(type = IdType.INPUT) | 
|     public Long id; | 
|   | 
|     /** | 
|      * 气象站编号 | 
|      */ | 
|     @Schema(description = "气象站编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|     public Integer no ; | 
|     /** | 
|     * 气象站名称 | 
|     */ | 
|     @Schema(description = "气象站名称", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|     public String name; | 
|   | 
|     /** | 
|      * 经度 | 
|      */ | 
|     @Schema(description = "气象站经度", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|     public Double lng; | 
|   | 
|     /** | 
|      * 纬度 | 
|      */ | 
|     @Schema(description = "气象站纬度", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|     public Double lat; | 
|   | 
|     /** | 
|      * 备注 | 
|      */ | 
|     @Schema(description = "备注信息", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|     public String remark; | 
|   | 
|     /** | 
|      * 是否删除(1是,0否) | 
|      */ | 
|     @Schema(description = "是否删除", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|     public Byte deleted; | 
|   | 
| } |