@@ -13,14 +13,14 @@ import lombok.Data;
public class AdmPoint extends BaseEntity {
/** 坐标x */
- @JsonProperty("X")
+ @JsonProperty("x")
private Double x;
/** 坐标y */
- @JsonProperty("Y")
+ @JsonProperty("y")
private Double y;
/** 坐标z */
- @JsonProperty("Z")
+ @JsonProperty("z")
private Double z;
}