From 7722d9782d843c2f36c5a94d3a295251c025b37b Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Tue, 12 Oct 2021 10:08:44 +0800
Subject: [PATCH] 1.山洪

---
 src/main/java/org/springblade/modules/mountainrain/entity/Yucsma.java |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/src/main/java/org/springblade/modules/mountainrain/entity/Yucsma.java b/src/main/java/org/springblade/modules/mountainrain/entity/Yucsma.java
new file mode 100644
index 0000000..7e8a6d3
--- /dev/null
+++ b/src/main/java/org/springblade/modules/mountainrain/entity/Yucsma.java
@@ -0,0 +1,61 @@
+package org.springblade.modules.mountainrain.entity;
+
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+@Data
+@TableName("sys_Yucsma")
+@ApiModel(value = "Yucsma对象", description = "Yucsma对象")
+public class Yucsma {
+
+	/**
+	 * 站码
+	 */
+	@ApiModelProperty(value = "站码")
+	private String stcd;
+
+	/**
+	 * 站名
+	 */
+	@ApiModelProperty(value = "站名")
+	private String stname;
+
+	/**
+	 * 河名
+	 */
+	@ApiModelProperty(value = "河名")
+	private String river;
+
+	/**
+	 * 发布时间
+	 */
+	@ApiModelProperty(value = "发布时间")
+	private String ftime;
+
+	/**
+	 * 预测时间
+	 */
+	@ApiModelProperty(value = "预测时间")
+	private String ytime;
+
+	/**
+	 * 预报水位
+	 */
+	@ApiModelProperty(value = "预报水位")
+	private String yuz;
+
+	/**
+	 * 预警水位
+	 */
+	@ApiModelProperty(value = "预警水位")
+	private String yjsw;
+
+	/**
+	 * 预警流量
+	 */
+	@ApiModelProperty(value = "预警流量")
+	private String yq;
+}

--
Gitblit v1.9.3