|
@@ -0,0 +1,52 @@
|
|
|
|
|
+package com.happy.Model.Ban;
|
|
|
|
|
+
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
|
|
+
|
|
|
|
|
+public class Detail {
|
|
|
|
|
+
|
|
|
|
|
+ public String name;
|
|
|
|
|
+ public String targetStr;
|
|
|
|
|
+ public String timestamp;
|
|
|
|
|
+ public String fullPath;
|
|
|
|
|
+ public ArrayList<Object> coordinates;
|
|
|
|
|
+
|
|
|
|
|
+ public String getName() {
|
|
|
|
|
+ return name;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setName(String name) {
|
|
|
|
|
+ this.name = name;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getTargetStr() {
|
|
|
|
|
+ return targetStr;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setTargetStr(String targetStr) {
|
|
|
|
|
+ this.targetStr = targetStr;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getTimestamp() {
|
|
|
|
|
+ return timestamp;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setTimestamp(String timestamp) {
|
|
|
|
|
+ this.timestamp = timestamp;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getFullPath() {
|
|
|
|
|
+ return fullPath;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setFullPath(String fullPath) {
|
|
|
|
|
+ this.fullPath = fullPath;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public ArrayList<Object> getCoordinates() {
|
|
|
|
|
+ return coordinates;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setCoordinates(ArrayList<Object> coordinates) {
|
|
|
|
|
+ this.coordinates = coordinates;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|