|
|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.inspect.metadata.montdata.domain; |
|
|
|
|
|
|
|
import com.alibaba.fastjson.annotation.JSONField; |
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
|
import com.inspect.base.core.annotation.Excel; |
|
|
|
import com.inspect.base.core.web.domain.BaseEntity; |
|
|
|
@ -41,6 +42,7 @@ public class BasedataMontPatDevCoord extends BaseEntity { |
|
|
|
name = "坐标,格式:”x,y,z,a”,x、y、z为地图文 件的坐标,a为巡视设备航向角" |
|
|
|
) |
|
|
|
@JsonProperty("coordinate_pixel") |
|
|
|
@JSONField(name = "coordinate_pixel") |
|
|
|
private String coordinatePixel; |
|
|
|
@Excel( |
|
|
|
name = "经纬度,格式:”x,y”" |
|
|
|
@ -51,6 +53,7 @@ public class BasedataMontPatDevCoord extends BaseEntity { |
|
|
|
name = "经纬度,格式:”x,y”" |
|
|
|
) |
|
|
|
@JsonProperty("coordinate_geography") |
|
|
|
@JSONField(name = "coordinate_geography") |
|
|
|
private String coordinateGeography; |
|
|
|
private String createBy; |
|
|
|
private Date createTime; |
|
|
|
|