package com.se.nsl.domain.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.EqualsAndHashCode;
|
import lombok.ToString;
|
|
@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;
|
}
|
}
|