|
|
@@ -5,6 +5,7 @@ import lombok.NoArgsConstructor;
|
|
|
import lombok.Setter;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
|
/**
|
|
|
* @author reghao
|
|
|
@@ -22,7 +23,7 @@ public class CamPhoto implements Serializable {
|
|
|
private String manufacturer;
|
|
|
private String model;
|
|
|
private String software;
|
|
|
- private String shotAt;
|
|
|
+ private LocalDateTime shotAt;
|
|
|
private Double longitude;
|
|
|
private Double latitude;
|
|
|
|
|
|
@@ -30,5 +31,10 @@ public class CamPhoto implements Serializable {
|
|
|
this.photoUrl = photoUrl;
|
|
|
this.channelCode = 0;
|
|
|
this.objectId = "";
|
|
|
+ this.manufacturer = "";
|
|
|
+ this.model = "";
|
|
|
+ this.software = "";
|
|
|
+ this.longitude = 0.0;
|
|
|
+ this.latitude = 0.0;
|
|
|
}
|
|
|
}
|