Commit e2ad849d authored by tangwei's avatar tangwei

修改接口地址

parent 64776f66
实战指挥接口清单: ### 实战指挥接口清单
跑马灯: - **跑马灯**
1:实时气象,地震 信息播报(具体看来源方式), 1. 实时气象,地震 信息播报(具体看来源方式),
2: 24小时气象,地震信息列表查看 2. 24小时气象,地震信息列表查看
战备值守地图屏: - **战备值守地图屏**
1:新警情,以及警情状态修改通知 ,mqtt 通知 1. 新警情,以及警情状态修改通知 ,mqtt 通知
2:未结案警情(不含归并警情),可通过警情地址模糊匹配,无需分页。 2. 未结案警情(不含归并警情),可通过警情地址模糊匹配,无需分页。
3:地图点击灾情,可查询警情相关信息接口(默认按警情id 查询) 3. 地图点击灾情,可查询警情相关信息接口(默认按警情id 查询)
战备值守业务屏: - **战备值守业务屏**
暂无 1. 暂无
应急指挥地图屏: - **应急指挥地图屏:**
1:微型消防站 分页列表,(根据与灾情距离,由近到远排序,) 1. 微型消防站 分页列表,(根据与灾情距离,由近到远排序,)具体字段 按之前列表字段显示,增加 距离字段。
具体字段 按之前列表字段显示,增加 距离字段。 2. 根据微型消防站 ,查询微型消防站详情,
2:根据微型消防站 ,查询微型消防站详情, 3. 水源分页列表(根据与灾情距离,由近到远排序,) 距离作为条件,具体字段 按之前列表字段显示,增加 距离字段。
3:水源分页列表(根据与灾情距离,由近到远排序,) 距离作为条件,具体字段 按之前列表字段显示,增加 距离字段。 4. 根据水源id ,查询水源详情。
4:根据水源id ,查询水源详情。 5. 消防车辆 分页列表 具体字段 按之前列表字段显示
5:消防车辆 分页列表 具体字段 按之前列表字段显示 6. 根据车辆id 查看车辆详情
6:根据车辆id 查看车辆详情 7. 获取车辆gprs 数据推送。Mqtt 通知web
7:获取车辆gprs 数据推送。Mqtt 通知web 8. 消防队伍 分页列表 (可根据队伍类型筛选)
8:消防队伍 分页列表 (可根据队伍类型筛选) 9. 根据队伍id ,查询队伍详情
9: 根据队伍id ,查询队伍详情
10:
应急指挥业务屏:
灾情信息
1: 根据灾情信息,查询特定灾情信息
2:
- **应急指挥业务屏:**
1. 根据灾情信息,查询特定灾情信息
\ No newline at end of file
...@@ -53,7 +53,7 @@ public class CommandController extends BaseController { ...@@ -53,7 +53,7 @@ public class CommandController extends BaseController {
*/ */
@TycloudOperation(needAuth = false, ApiLevel = UserType.AGENCY) @TycloudOperation(needAuth = false, ApiLevel = UserType.AGENCY)
@GetMapping(value = "JQ/list") @GetMapping(value = "JQ/list")
@ApiOperation(httpMethod = "GET", value = "警情列表分页查询", notes = "警情列表分页查询") @ApiOperation(httpMethod = "GET", value = "警情列表查询", notes = "警情列表查询")
public ResponseModel<Object> listPage(String address) { public ResponseModel<Object> listPage(String address) {
List<AlertCalledZhDto> list= iAlertCalledService.alertCalledListByAlertStatus(address); List<AlertCalledZhDto> list= iAlertCalledService.alertCalledListByAlertStatus(address);
return ResponseHelper.buildResponse(list); return ResponseHelper.buildResponse(list);
...@@ -134,7 +134,7 @@ public class CommandController extends BaseController { ...@@ -134,7 +134,7 @@ public class CommandController extends BaseController {
* *
*/ */
@TycloudOperation(needAuth = false,ApiLevel = UserType.AGENCY) @TycloudOperation(needAuth = false,ApiLevel = UserType.AGENCY)
@GetMapping(value = "WX//{id}") @GetMapping(value = "WX/{id}")
@ApiOperation(httpMethod = "GET", value = "根据id查询微型消防站", notes = "根据id查询微型消防站") @ApiOperation(httpMethod = "GET", value = "根据id查询微型消防站", notes = "根据id查询微型消防站")
public ResponseModel<FireStationDto> seleteOne(@PathVariable Long id) { public ResponseModel<FireStationDto> seleteOne(@PathVariable Long id) {
return ResponseHelper.buildResponse(iFireStationService.selectBySequenceNbr(id)); return ResponseHelper.buildResponse(iFireStationService.selectBySequenceNbr(id));
...@@ -150,7 +150,7 @@ public class CommandController extends BaseController { ...@@ -150,7 +150,7 @@ public class CommandController extends BaseController {
* *
*/ */
@TycloudOperation(needAuth = false,ApiLevel = UserType.AGENCY) @TycloudOperation(needAuth = false,ApiLevel = UserType.AGENCY)
@GetMapping(value = "SY//{id}") @GetMapping(value = "SY/{id}")
@ApiOperation(httpMethod = "GET", value = "根据id查询水源", notes = "根据id查询水源") @ApiOperation(httpMethod = "GET", value = "根据id查询水源", notes = "根据id查询水源")
public ResponseModel<WaterResourceDto> selectOne(@PathVariable Long id) { public ResponseModel<WaterResourceDto> selectOne(@PathVariable Long id) {
return ResponseHelper.buildResponse(iWaterResourceService.selectBySequenceNbr(id)); return ResponseHelper.buildResponse(iWaterResourceService.selectBySequenceNbr(id));
...@@ -170,4 +170,6 @@ public class CommandController extends BaseController { ...@@ -170,4 +170,6 @@ public class CommandController extends BaseController {
return ResponseHelper.buildResponse(iFireTeamService.getFireTeamBySequenceNbr(id)); return ResponseHelper.buildResponse(iFireTeamService.getFireTeamBySequenceNbr(id));
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment