Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
a7ca9bce
Commit
a7ca9bce
authored
Aug 19, 2024
by
suhuiguang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop_tzs_register_to_0715' of…
Merge branch 'develop_tzs_register_to_0715' of
http://36.40.66.175:5000/moa/amos-boot-biz
into develop_tzs_register_to_0715
parents
34e57655
e9e472e2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
YJDPStatisticsController.java
...le/statistcs/biz/controller/YJDPStatisticsController.java
+10
-2
YJDPStatisticsServiceImpl.java
...statistcs/biz/service/impl/YJDPStatisticsServiceImpl.java
+1
-1
No files found.
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/controller/YJDPStatisticsController.java
View file @
a7ca9bce
...
@@ -210,7 +210,11 @@ public class YJDPStatisticsController {
...
@@ -210,7 +210,11 @@ public class YJDPStatisticsController {
@ApiOperation
(
value
=
"应急大屏使用-办理量 (近7天)-右上角更多-各地市业务办理情况-底部表格"
,
@ApiOperation
(
value
=
"应急大屏使用-办理量 (近7天)-右上角更多-各地市业务办理情况-底部表格"
,
notes
=
"应急大屏使用-办理量 (近7天)-右上角更多-各地市业务办理情况-底部表格"
)
notes
=
"应急大屏使用-办理量 (近7天)-右上角更多-各地市业务办理情况-底部表格"
)
@PostMapping
(
"/alertRecordTable/dp"
)
@PostMapping
(
"/alertRecordTable/dp"
)
public
ResponseModel
<
IPage
<
Map
<
String
,
Object
>>>
alertRecordTableForDP
(
@Validated
@RequestBody
DPFilterParamForDetailDto
recordFilterVo
)
{
public
ResponseModel
<
IPage
<
Map
<
String
,
Object
>>>
alertRecordTableForDP
(
@Validated
@RequestBody
DPFilterParamForDetailDto
recordFilterVo
,
@RequestParam
(
value
=
"current"
)
Integer
current
,
@RequestParam
(
value
=
"size"
)
Integer
size
)
{
recordFilterVo
.
setCurrent
(
current
);
recordFilterVo
.
setSize
(
size
);
return
statisticsService
.
alertRecordTableForDP
(
recordFilterVo
);
return
statisticsService
.
alertRecordTableForDP
(
recordFilterVo
);
}
}
...
@@ -243,7 +247,11 @@ public class YJDPStatisticsController {
...
@@ -243,7 +247,11 @@ public class YJDPStatisticsController {
@ApiOperation
(
value
=
"月度困人故障高发使用单位-右上角更多-地市月度应急事件高发使用单位-表格"
,
@ApiOperation
(
value
=
"月度困人故障高发使用单位-右上角更多-地市月度应急事件高发使用单位-表格"
,
notes
=
"月度困人故障高发使用单位-右上角更多-地市月度应急事件高发使用单位-表格"
)
notes
=
"月度困人故障高发使用单位-右上角更多-地市月度应急事件高发使用单位-表格"
)
@PostMapping
(
"/alertUseUnitTable/dp"
)
@PostMapping
(
"/alertUseUnitTable/dp"
)
public
ResponseModel
<
IPage
<
AlertUseUnitStatistics
>>
alertUseUnitTableForDP
(
@Validated
@RequestBody
DPFilterParamForDetailDto
detailDto
)
{
public
ResponseModel
<
IPage
<
AlertUseUnitStatistics
>>
alertUseUnitTableForDP
(
@Validated
@RequestBody
DPFilterParamForDetailDto
detailDto
,
@RequestParam
(
value
=
"current"
)
Integer
current
,
@RequestParam
(
value
=
"size"
)
Integer
size
)
{
detailDto
.
setCurrent
(
current
);
detailDto
.
setSize
(
size
);
return
statisticsService
.
alertUseUnitTableForDP
(
detailDto
);
return
statisticsService
.
alertUseUnitTableForDP
(
detailDto
);
}
}
}
}
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/service/impl/YJDPStatisticsServiceImpl.java
View file @
a7ca9bce
...
@@ -400,7 +400,7 @@ public class YJDPStatisticsServiceImpl {
...
@@ -400,7 +400,7 @@ public class YJDPStatisticsServiceImpl {
public
Map
<
String
,
Object
>
getCenterMapCountDataForGlobal
(
DPFilterParamDto
dpFilterParamDto
)
{
public
Map
<
String
,
Object
>
getCenterMapCountDataForGlobal
(
DPFilterParamDto
dpFilterParamDto
)
{
this
.
setDefaultFilter
(
dpFilterParamDto
);
//
this.setDefaultFilter(dpFilterParamDto);
String
orgCode
=
stCommonService
.
getAndSetOrgCode
(
dpFilterParamDto
);
String
orgCode
=
stCommonService
.
getAndSetOrgCode
(
dpFilterParamDto
);
if
(
StringUtils
.
isNotEmpty
(
orgCode
))
{
if
(
StringUtils
.
isNotEmpty
(
orgCode
))
{
return
this
.
getCenterMapOverviewData
(
orgCode
,
dpFilterParamDto
);
return
this
.
getCenterMapOverviewData
(
orgCode
,
dpFilterParamDto
);
...
...
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