Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
428f9439
Commit
428f9439
authored
May 27, 2025
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
统计bug修改
parent
4d866568
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
portal-manager/src/main/resources/sqlmap/module/page/PageAccessDepthMapperExt.xml
...resources/sqlmap/module/page/PageAccessDepthMapperExt.xml
+2
-2
portal-manager/src/main/resources/sqlmap/module/page/PageEventMapperExt.xml
.../main/resources/sqlmap/module/page/PageEventMapperExt.xml
+1
-1
No files found.
portal-manager/src/main/resources/sqlmap/module/page/PageAccessDepthMapperExt.xml
View file @
428f9439
...
...
@@ -6,8 +6,8 @@
<!-- 人均访问深度 -->
<select
id=
"getDepthAvg"
parameterType=
"com.mortals.xhx.module.page.model.pdu.PageCensusPdu"
resultType=
"com.mortals.xhx.module.page.model.vo.AccessTrendCensusVo"
>
SELECT
IFNULL(
FORMAT
(AVG(t.depthValue),2),0) AS depthAvg,
IFNULL(
FORMAT
(sum(t.depthValue)/count(t.id),2),0) AS singleDepth
IFNULL(
ROUND
(AVG(t.depthValue),2),0) AS depthAvg,
IFNULL(
ROUND
(sum(t.depthValue)/count(t.id),2),0) AS singleDepth
FROM
mortals_xhx_page_access_depth t
WHERE
...
...
portal-manager/src/main/resources/sqlmap/module/page/PageEventMapperExt.xml
View file @
428f9439
...
...
@@ -8,7 +8,7 @@
t.eventCode,
t.eventName,
FLOOR(count(id)/(DATEDIFF(MAX(t.createTime),MIN(t.createTime))+1)) as dayAvg,
FORMAT
(AVG(t.takeTime)/1000,2) as takeTimeAvg,
ROUND
(AVG(t.takeTime)/1000,2) as takeTimeAvg,
count(id) as total
FROM
mortals_xhx_page_event t
...
...
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