From 189ef60e83e726a1b3563285606d8a145e1f409a Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 01 十一月 2024 20:31:14 +0800 Subject: [PATCH] 1 --- src/main/java/com/se/simu/domain/vo/BuildingDepthVo.java | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 56 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/se/simu/domain/vo/BuildingDepthVo.java b/src/main/java/com/se/simu/domain/vo/BuildingDepthVo.java new file mode 100644 index 0000000..262db17 --- /dev/null +++ b/src/main/java/com/se/simu/domain/vo/BuildingDepthVo.java @@ -0,0 +1,56 @@ +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; + } +} -- Gitblit v1.9.3