Compare commits
2 Commits
e20c2f389e
...
0a9d5c6df4
| Author | SHA1 | Date |
|---|---|---|
|
|
0a9d5c6df4 | |
|
|
2b1ac349e0 |
|
|
@ -61,6 +61,16 @@ public class AirlineAreaVO extends BaseEntity {
|
|||
*/
|
||||
private Double radius;
|
||||
|
||||
/**
|
||||
* 最小高度
|
||||
*/
|
||||
private Double minHeight;
|
||||
|
||||
/**
|
||||
* 最大高度
|
||||
*/
|
||||
private Double maxHeight;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
|
|
@ -93,6 +103,8 @@ public class AirlineAreaVO extends BaseEntity {
|
|||
.append("areaArea", getAreaArea())
|
||||
.append("areaPerimeter", getAreaPerimeter())
|
||||
.append("radius", getRadius())
|
||||
.append("minHeight", getMinHeight())
|
||||
.append("maxHeight", getMaxHeight())
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue