From 83ccf770de4f2a7ea0debde1d411bf2085877104 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Thu, 21 Jul 2022 17:46:03 +0800
Subject: [PATCH] 活动底图

---
 src/main/java/org/springblade/modules/sp/entity/Sp.java |   34 ++++++++++++++++++++++++----------
 1 files changed, 24 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/springblade/modules/sp/entity/Sp.java b/src/main/java/org/springblade/modules/sp/entity/Sp.java
index af6f9cb..d0a1426 100644
--- a/src/main/java/org/springblade/modules/sp/entity/Sp.java
+++ b/src/main/java/org/springblade/modules/sp/entity/Sp.java
@@ -20,7 +20,9 @@
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableField;
+
 import java.io.Serializable;
+
 import lombok.Data;
 import lombok.EqualsAndHashCode;
 import io.swagger.annotations.ApiModel;
@@ -42,18 +44,24 @@
 	@TableId(value = "id", type = IdType.AUTO)
 	private Integer id;
 	/**
-	* VR名称
-	*/
-		@ApiModelProperty(value = "VR名称")
-		@TableField("VrName")
+	 * VR名称
+	 */
+	@ApiModelProperty(value = "VR名称")
+	@TableField("VrName")
 	private String vrname;
 	/**
-	* VR地址
-	*/
-		@ApiModelProperty(value = "VR地址")
-		@TableField("VrUrl")
+	 * VR地址
+	 */
+	@ApiModelProperty(value = "VR地址")
+	@TableField("VrUrl")
 	private String vrurl;
+	/**
+	 * 经度
+	 */
 	private String jd;
+	/**
+	 * 纬度
+	 */
 	private String wd;
 	/**
 	 * 选点逆解析返回的地址名字
@@ -64,6 +72,12 @@
 	 * 视频格式
 	 */
 	private String spgs;
-
-
+	/**
+	 * x轴
+	 */
+	private String x;
+	/**
+	 * y轴
+	 */
+	private String y;
 }

--
Gitblit v1.9.3