图像信息中增加经度纬度海拔属性
This commit is contained in:
parent
7429c6d43f
commit
2779278a41
|
@ -72,6 +72,18 @@ public class ImageEntity extends AuditableEntity implements Serializable {
|
|||
@TableField("camera_model")
|
||||
private String cameraModel;
|
||||
|
||||
@ApiModelProperty("经度")
|
||||
@TableField("longitude")
|
||||
private String longitude;
|
||||
|
||||
@ApiModelProperty("纬度")
|
||||
@TableField("latitude")
|
||||
private String latitude;
|
||||
|
||||
@ApiModelProperty("海拔")
|
||||
@TableField("altitude")
|
||||
private String altitude;
|
||||
|
||||
@ApiModelProperty("影像类型")
|
||||
@TableField("image_type,枚举ImageTypeEnum")
|
||||
private String imageType;
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
<mapper namespace="com.dite.znpt.mapper.ImageMapper">
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
a.image, a.part_id, a.turbine_id, a.project_id, a.image_name, a.image_size, a.focal_distance, a.shooting_time, a.camera_manufacture, a.camera_model
|
||||
a.image, a.part_id, a.turbine_id, a.project_id, a.image_name, a.image_size, a.focal_distance,
|
||||
a.shooting_time, a.camera_manufacture, a.camera_model, a.longitude, a.latitude, a.altitude,
|
||||
a.image_type, a.image_path
|
||||
</sql>
|
||||
|
||||
<select id="queryBySelective" resultType="com.dite.znpt.domain.vo.ImageResp">
|
||||
|
|
Loading…
Reference in New Issue