1
13693261870
2024-11-02 ee26ff7331614b14c9f156c5590724e29e99dc06
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
package com.se.simu.domain.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
/**
 * 建筑物涉水深度视图类
 *
 * @author WWW
 * @date 2024-11-01
 */
@ToString
@SuppressWarnings("ALL")
@ApiModel(value = "建筑物涉水深度视图类")
@EqualsAndHashCode(callSuper = false)
public class BuildingDepthVo {
    public BuildingDepthVo() {
    }
 
    public BuildingDepthVo(String id, Long timestamp, Double depth) {
        this.id = id;
        this.timestamp = timestamp;
        this.depth = depth;
    }
 
    @ApiModelProperty("主键ID")
    private String id;
 
    @ApiModelProperty("时间戳")
    private Long timestamp;
 
    @ApiModelProperty("涉水尝试")
    private Double depth;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Long getTimestamp() {
        return timestamp;
    }
 
    public void setTimestamp(Long timestamp) {
        this.timestamp = timestamp;
    }
 
    public Double getDepth() {
        return depth;
    }
 
    public void setDepth(Double depth) {
        this.depth = depth;
    }
}