| | |
| | | package com.se.simu.domain.vo; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.ToString; |
| | | |
| | |
| | | public BuildingDepthVo() { |
| | | } |
| | | |
| | | public BuildingDepthVo(String seid, String timestamp, Double depth) { |
| | | public BuildingDepthVo(String seid, Long timestamp, Double depth) { |
| | | this.seid = seid; |
| | | this.timestamp = timestamp; |
| | | this.depth = depth; |
| | | } |
| | | |
| | | @ApiModelProperty("SE主键") |
| | | private String seid; |
| | | |
| | | private String timestamp; |
| | | @ApiModelProperty("时间戳") |
| | | private Long timestamp; |
| | | |
| | | @ApiModelProperty("涉水尝试") |
| | | private Double depth; |
| | | |
| | | public String getSeid() { |
| | |
| | | this.seid = seid; |
| | | } |
| | | |
| | | public String getTimestamp() { |
| | | public Long getTimestamp() { |
| | | return timestamp; |
| | | } |
| | | |
| | | public void setTimestamp(String timestamp) { |
| | | public void setTimestamp(Long timestamp) { |
| | | this.timestamp = timestamp; |
| | | } |
| | | |