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 VoManure  implements BaseEntity { 
 | 
    private static final long serialVersionUID = 202506241715001L; 
 | 
    /** 
 | 
     * 主键 
 | 
     */ 
 | 
    @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; 
 | 
  
 | 
} 
 |