Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
8d1a0a13
Commit
8d1a0a13
authored
Jan 12, 2023
by
耿迪迪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
人脸通过 gengdidi
parent
a024b918
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
4 deletions
+20
-4
SubscriptionEventController.java
.../controller/videomonitor/SubscriptionEventController.java
+19
-3
TEntranceGuardPersonInfoMapper.xml
...esources/mapper/system/TEntranceGuardPersonInfoMapper.xml
+1
-1
No files found.
danger-manage-admin/src/main/java/com/zehong/web/controller/videomonitor/SubscriptionEventController.java
View file @
8d1a0a13
...
...
@@ -6,6 +6,7 @@ import com.alibaba.fastjson.JSONObject;
import
com.github.pagehelper.util.StringUtil
;
import
com.zehong.common.core.domain.AjaxResult
;
import
com.zehong.common.core.redis.RedisCache
;
import
com.zehong.common.utils.StringUtils
;
import
com.zehong.system.domain.TDeviceAlarmInfo
;
import
com.zehong.system.domain.TEntranceGuardPersonInfo
;
import
com.zehong.system.domain.vo.ArtemisPerson
;
...
...
@@ -20,6 +21,7 @@ import org.springframework.web.bind.annotation.RequestBody;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.text.ParseException
;
import
java.text.SimpleDateFormat
;
import
java.util.Date
;
import
java.util.HashMap
;
...
...
@@ -100,13 +102,28 @@ public class SubscriptionEventController {
throw
new
Exception
(
"订阅信息有误不包含events信息"
);
}
for
(
JSONObject
event
:
events
){
Date
happenTime
=
new
SimpleDateFormat
(
"yyyy-MM-dd'T'HH:mm:ss.SSS'+'"
).
parse
((
String
)
event
.
get
(
"happenTime"
));
if
((
System
.
currentTimeMillis
()
-
happenTime
.
getTime
())
/(
1000
*
3600
)
>
1
){
throw
new
Exception
(
"事件超过一小时,数据丢弃"
);
}
JSONObject
data
=
(
JSONObject
)
JSON
.
toJSON
(
event
.
get
(
"data"
));
String
personNo
=
(
String
)
data
.
get
(
"ExtEventPersonNo"
);
//获取人员信息
String
extEventInOut
=
String
.
valueOf
(
data
.
get
(
"ExtEventInOut"
));
ArtemisPerson
artemisPerson
=
new
ArtemisPerson
();
artemisPerson
.
setPageNo
(
1
);
artemisPerson
.
setPageSize
(
1000
);
artemisPerson
.
setCertificateNo
(
personNo
);
if
(
StringUtils
.
isNotEmpty
(
personNo
)){
artemisPerson
.
setPersonIds
(
personNo
);
}
else
{
String
cardNo
=
(
String
)
data
.
get
(
"ExtEventCardNo"
);
if
(
StringUtils
.
isNotEmpty
(
cardNo
)){
artemisPerson
.
setCardNo
(
cardNo
);
}
else
{
throw
new
Exception
(
"人员和卡信息不全!"
);
}
}
String
personInfoStr
=
ArtemisUtils
.
personList
(
artemisPerson
);
JSONObject
personInfo
=
JSON
.
parseObject
(
personInfoStr
);
if
(!
"0"
.
equals
(
personInfo
.
get
(
"code"
))){
...
...
@@ -121,11 +138,10 @@ public class SubscriptionEventController {
TEntranceGuardPersonInfo
tEntranceGuardPersonInfo
=
new
TEntranceGuardPersonInfo
();
tEntranceGuardPersonInfo
.
setPersonName
(
personName
);
tEntranceGuardPersonInfo
.
setPersonNum
((
String
)
list
.
get
(
0
).
get
(
"certificateNo"
));
String
extEventInOut
=
String
.
valueOf
(
data
.
get
(
"ExtEventInOut"
));
if
(
"0"
.
equals
(
extEventInOut
)
||
"1"
.
equals
(
extEventInOut
)){
tEntranceGuardPersonInfo
.
setActionType
(
"0"
.
equals
(
extEventInOut
)
?
"1"
:
"0"
);
}
tEntranceGuardPersonInfo
.
setActionTime
(
new
SimpleDateFormat
(
"yyyy-MM-dd'T'HH:mm:ss.SSS'+'"
).
parse
((
String
)
event
.
get
(
"happenTime"
))
);
tEntranceGuardPersonInfo
.
setActionTime
(
happenTime
);
tEntranceGuardPersonInfoService
.
insertTEntranceGuardPersonInfo
(
tEntranceGuardPersonInfo
);
}
}
...
...
danger-manage-system/src/main/resources/mapper/system/TEntranceGuardPersonInfoMapper.xml
View file @
8d1a0a13
...
...
@@ -158,7 +158,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
*
FROM
t_entrance_guard_person_info
ORDER BY action_time DESC
ORDER BY action_time DESC
LIMIT 10000
)present
GROUP BY
present.action_type
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment