Toggle navigation
Toggle navigation
This project
Loading...
Sign in
cse437_e
/
smartdoorlock-frontend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
오윤석
2020-11-19 10:53:53 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
945a1d3d46bac83678c091e86427e7cab4d6e77b
945a1d3d
1 parent
45f55e88
created at 형식 대응
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
app/src/main/java/com/sunnni/smartdoorlock/data/Device.java
app/src/main/java/com/sunnni/smartdoorlock/data/RemoteRecord.java
app/src/main/java/com/sunnni/smartdoorlock/data/Video.java
app/src/main/java/com/sunnni/smartdoorlock/data/Device.java
View file @
945a1d3
...
...
@@ -12,7 +12,7 @@ public class Device {
}
public
String
getCreated
()
{
return
created
;
return
created
.
substring
(
0
,
10
)
+
" "
+
created
.
substring
(
11
,
19
)
;
}
public
int
getDeviceId
()
{
...
...
app/src/main/java/com/sunnni/smartdoorlock/data/RemoteRecord.java
View file @
945a1d3
...
...
@@ -14,6 +14,6 @@ public class RemoteRecord {
}
public
String
getCreated
()
{
return
created
;
return
created
.
substring
(
0
,
10
)
+
" "
+
created
.
substring
(
11
,
19
)
;
}
}
...
...
app/src/main/java/com/sunnni/smartdoorlock/data/Video.java
View file @
945a1d3
...
...
@@ -19,7 +19,7 @@ public class Video {
}
public
String
getCreated
()
{
return
created
;
return
created
.
substring
(
0
,
10
)
+
" "
+
created
.
substring
(
11
,
19
)
;
}
public
String
getS3link
()
{
...
...
Please
register
or
login
to post a comment