feat:增加航线限高
This commit is contained in:
parent
efe420b5a9
commit
2b1ac349e0
|
|
@ -61,6 +61,16 @@ public class AirlineAreaVO extends BaseEntity {
|
||||||
*/
|
*/
|
||||||
private Double radius;
|
private Double radius;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 最小高度
|
||||||
|
*/
|
||||||
|
private Double minHeight;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 最大高度
|
||||||
|
*/
|
||||||
|
private Double maxHeight;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
|
|
@ -93,6 +103,8 @@ public class AirlineAreaVO extends BaseEntity {
|
||||||
.append("areaArea", getAreaArea())
|
.append("areaArea", getAreaArea())
|
||||||
.append("areaPerimeter", getAreaPerimeter())
|
.append("areaPerimeter", getAreaPerimeter())
|
||||||
.append("radius", getRadius())
|
.append("radius", getRadius())
|
||||||
|
.append("minHeight", getMinHeight())
|
||||||
|
.append("maxHeight", getMaxHeight())
|
||||||
.append("remark", getRemark())
|
.append("remark", getRemark())
|
||||||
.toString();
|
.toString();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue