package com.se.simu.domain.vo;
|
|
import io.swagger.annotations.ApiModel;
|
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 seid, String timestamp, Double depth) {
|
this.seid = seid;
|
this.timestamp = timestamp;
|
this.depth = depth;
|
}
|
|
private String seid;
|
|
private String timestamp;
|
|
private Double depth;
|
|
public String getSeid() {
|
return seid;
|
}
|
|
public void setSeid(String seid) {
|
this.seid = seid;
|
}
|
|
public String getTimestamp() {
|
return timestamp;
|
}
|
|
public void setTimestamp(String timestamp) {
|
this.timestamp = timestamp;
|
}
|
|
public Double getDepth() {
|
return depth;
|
}
|
|
public void setDepth(Double depth) {
|
this.depth = depth;
|
}
|
}
|