오윤석

created at 형식 대응

...@@ -12,7 +12,7 @@ public class Device { ...@@ -12,7 +12,7 @@ public class Device {
12 } 12 }
13 13
14 public String getCreated() { 14 public String getCreated() {
15 - return created; 15 + return created.substring(0,10) + " " + created.substring(11, 19);
16 } 16 }
17 17
18 public int getDeviceId() { 18 public int getDeviceId() {
......
...@@ -14,6 +14,6 @@ public class RemoteRecord { ...@@ -14,6 +14,6 @@ public class RemoteRecord {
14 } 14 }
15 15
16 public String getCreated() { 16 public String getCreated() {
17 - return created; 17 + return created.substring(0,10) + " " + created.substring(11, 19);
18 } 18 }
19 } 19 }
......
...@@ -19,7 +19,7 @@ public class Video { ...@@ -19,7 +19,7 @@ public class Video {
19 } 19 }
20 20
21 public String getCreated() { 21 public String getCreated() {
22 - return created; 22 + return created.substring(0,10) + " " + created.substring(11, 19);
23 } 23 }
24 24
25 public String getS3link() { 25 public String getS3link() {
......