|
|
@@ -45,12 +45,6 @@ public class PipeNetworkBase {
|
|
|
@ApiModelProperty("位置描述")
|
|
|
private String location;
|
|
|
|
|
|
- @ApiModelProperty("经度")
|
|
|
- private BigDecimal longitude;
|
|
|
-
|
|
|
- @ApiModelProperty("纬度")
|
|
|
- private BigDecimal latitude;
|
|
|
-
|
|
|
@ApiModelProperty("长度(米)")
|
|
|
private BigDecimal length;
|
|
|
|
|
|
@@ -87,4 +81,16 @@ public class PipeNetworkBase {
|
|
|
@TableLogic(value = "0", delval = "2")
|
|
|
@ApiModelProperty("删除标志(0=正常 2=删除)")
|
|
|
private String delFlag;
|
|
|
+
|
|
|
+ @ApiModelProperty("管网起点WGS84经度")
|
|
|
+ private BigDecimal start_longitude;
|
|
|
+
|
|
|
+ @ApiModelProperty("管网起点WGS84纬度")
|
|
|
+ private BigDecimal start_latitude;
|
|
|
+
|
|
|
+ @ApiModelProperty("管网终点WGS84经度")
|
|
|
+ private BigDecimal end_longitude;
|
|
|
+
|
|
|
+ @ApiModelProperty("管网终点WGS84纬度")
|
|
|
+ private BigDecimal end_latitude;
|
|
|
}
|