|
@@ -53,10 +53,14 @@ public class AppSite implements Serializable {
|
|
|
@Excel(name = "地址", width = 15)
|
|
|
@Schema(description = "地址")
|
|
|
private String address;
|
|
|
- /**经纬度*/
|
|
|
- @Excel(name = "经纬度", width = 15)
|
|
|
- @Schema(description = "经纬度")
|
|
|
- private String latitude;
|
|
|
+ /**经度*/
|
|
|
+ @Excel(name = "经度", width = 15)
|
|
|
+ @Schema(description = "经度")
|
|
|
+ private BigDecimal longitude;
|
|
|
+ /**纬度*/
|
|
|
+ @Excel(name = "纬度", width = 15)
|
|
|
+ @Schema(description = "纬度")
|
|
|
+ private BigDecimal latitude;
|
|
|
/**类型;0学校 1包场 2不固定场*/
|
|
|
@Excel(name = "类型;0学校 1包场 2不固定场", width = 15)
|
|
|
@Schema(description = "类型;0学校 1包场 2不固定场")
|