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
e2ad849d
Commit
e2ad849d
authored
Jul 16, 2021
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改接口地址
parent
64776f66
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
32 deletions
+29
-32
explain.md
...s-boot-module-biz/amos-boot-module-command-biz/explain.md
+23
-29
CommandController.java
...boot/module/command/biz/controller/CommandController.java
+6
-3
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-command-biz/explain.md
View file @
e2ad849d
实战指挥接口清单:
跑马灯:
1:实时气象,地震 信息播报(具体看来源方式),
2: 24小时气象,地震信息列表查看
战备值守地图屏:
1:新警情,以及警情状态修改通知 ,mqtt 通知
2:未结案警情(不含归并警情),可通过警情地址模糊匹配,无需分页。
3:地图点击灾情,可查询警情相关信息接口(默认按警情id 查询)
战备值守业务屏:
暂无
应急指挥地图屏:
1:微型消防站 分页列表,(根据与灾情距离,由近到远排序,)
具体字段 按之前列表字段显示,增加 距离字段。
2:根据微型消防站 ,查询微型消防站详情,
3:水源分页列表(根据与灾情距离,由近到远排序,) 距离作为条件,具体字段 按之前列表字段显示,增加 距离字段。
4:根据水源id ,查询水源详情。
5:消防车辆 分页列表 具体字段 按之前列表字段显示
6:根据车辆id 查看车辆详情
7:获取车辆gprs 数据推送。Mqtt 通知web
8:消防队伍 分页列表 (可根据队伍类型筛选)
9: 根据队伍id ,查询队伍详情
10:
应急指挥业务屏:
灾情信息
1: 根据灾情信息,查询特定灾情信息
2:
### 实战指挥接口清单
-
**跑马灯**
:
1.
实时气象,地震 信息播报(具体看来源方式),
2.
24小时气象,地震信息列表查看
-
**战备值守地图屏**
:
1.
新警情,以及警情状态修改通知 ,mqtt 通知
2.
未结案警情(不含归并警情),可通过警情地址模糊匹配,无需分页。
3.
地图点击灾情,可查询警情相关信息接口(默认按警情id 查询)
-
**战备值守业务屏**
:
1.
暂无
-
**应急指挥地图屏:**
1.
微型消防站 分页列表,(根据与灾情距离,由近到远排序,)具体字段 按之前列表字段显示,增加 距离字段。
2.
根据微型消防站 ,查询微型消防站详情,
3.
水源分页列表(根据与灾情距离,由近到远排序,) 距离作为条件,具体字段 按之前列表字段显示,增加 距离字段。
4.
根据水源id ,查询水源详情。
5.
消防车辆 分页列表 具体字段 按之前列表字段显示
6.
根据车辆id 查看车辆详情
7.
获取车辆gprs 数据推送。Mqtt 通知web
8.
消防队伍 分页列表 (可根据队伍类型筛选)
9.
根据队伍id ,查询队伍详情
-
**应急指挥业务屏:**
1.
根据灾情信息,查询特定灾情信息
\ No newline at end of file
amos-boot-module/amos-boot-module-biz/amos-boot-module-command-biz/src/main/java/com/yeejoin/amos/boot/module/command/biz/controller/CommandController.java
View file @
e2ad849d
...
...
@@ -53,7 +53,7 @@ public class CommandController extends BaseController {
*/
@TycloudOperation
(
needAuth
=
false
,
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"JQ/list"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"警情列表
分页查询"
,
notes
=
"警情列表分页
查询"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"警情列表
查询"
,
notes
=
"警情列表
查询"
)
public
ResponseModel
<
Object
>
listPage
(
String
address
)
{
List
<
AlertCalledZhDto
>
list
=
iAlertCalledService
.
alertCalledListByAlertStatus
(
address
);
return
ResponseHelper
.
buildResponse
(
list
);
...
...
@@ -134,7 +134,7 @@ public class CommandController extends BaseController {
*
*/
@TycloudOperation
(
needAuth
=
false
,
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"WX/
/
{id}"
)
@GetMapping
(
value
=
"WX/{id}"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据id查询微型消防站"
,
notes
=
"根据id查询微型消防站"
)
public
ResponseModel
<
FireStationDto
>
seleteOne
(
@PathVariable
Long
id
)
{
return
ResponseHelper
.
buildResponse
(
iFireStationService
.
selectBySequenceNbr
(
id
));
...
...
@@ -150,7 +150,7 @@ public class CommandController extends BaseController {
*
*/
@TycloudOperation
(
needAuth
=
false
,
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"SY/
/
{id}"
)
@GetMapping
(
value
=
"SY/{id}"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据id查询水源"
,
notes
=
"根据id查询水源"
)
public
ResponseModel
<
WaterResourceDto
>
selectOne
(
@PathVariable
Long
id
)
{
return
ResponseHelper
.
buildResponse
(
iWaterResourceService
.
selectBySequenceNbr
(
id
));
...
...
@@ -170,4 +170,6 @@ public class CommandController extends BaseController {
return
ResponseHelper
.
buildResponse
(
iFireTeamService
.
getFireTeamBySequenceNbr
(
id
));
}
}
\ No newline at end of file
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