liurunyu
昨天 c6730faba09365bc31dba0e97d462ad542c577bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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 VoSoil implements BaseEntity {
    private static final long serialVersionUID = 202506241715002L;
    /**
     * 主键
     */
    @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;
 
}