Files
shz-dataDashboard/ruoyi-bussiness/src/main/java/com/ruoyi/cms/util/Station.java
2026-01-09 20:13:01 +08:00

16 lines
370 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.cms.util;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
public class Station {
@JsonProperty("n")
private String stationName; // 站点名称
@JsonProperty("sl")
private String location; // 经纬度(格式为 "经度,纬度"
@JsonProperty("rs")
private String order; // 排序信息
}