| | |
| | | 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 = "建筑物涉水深度视图类") |
| | |
| | | public BuildingDepthVo() { |
| | | } |
| | | |
| | | public BuildingDepthVo(String seid, String timestamp, Double depth) { |
| | | this.seid = seid; |
| | | public BuildingDepthVo(String id, Long timestamp, Double depth) { |
| | | this.id = id; |
| | | this.timestamp = timestamp; |
| | | this.depth = depth; |
| | | } |
| | | |
| | | private String seid; |
| | | @ApiModelProperty("主键ID") |
| | | private String id; |
| | | |
| | | private String timestamp; |
| | | @ApiModelProperty("时间戳") |
| | | private Long timestamp; |
| | | |
| | | @ApiModelProperty("涉水尝试") |
| | | private Double depth; |
| | | |
| | | public String getSeid() { |
| | | return seid; |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setSeid(String seid) { |
| | | this.seid = seid; |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getTimestamp() { |
| | | public Long getTimestamp() { |
| | | return timestamp; |
| | | } |
| | | |
| | | public void setTimestamp(String timestamp) { |
| | | public void setTimestamp(Long timestamp) { |
| | | this.timestamp = timestamp; |
| | | } |
| | | |