|
|
@ -31,7 +31,7 @@ public class AppHomeController extends BladeController { |
|
|
|
@ApiLog |
|
|
|
@ApiLog |
|
|
|
@ApiOperation("app首页-站点") |
|
|
|
@ApiOperation("app首页-站点") |
|
|
|
@GetMapping("/appStation") |
|
|
|
@GetMapping("/appStation") |
|
|
|
@ApiOperationSupport(order = 11) |
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
public R<List<AppStationVo>> appStation(@ApiParam(value = "区域机构ID") Long deptId) { |
|
|
|
public R<List<AppStationVo>> appStation(@ApiParam(value = "区域机构ID") Long deptId) { |
|
|
|
return R.data(appService.appStation(deptId)); |
|
|
|
return R.data(appService.appStation(deptId)); |
|
|
|
} |
|
|
|
} |
|
|
@ -39,7 +39,7 @@ public class AppHomeController extends BladeController { |
|
|
|
@ApiLog |
|
|
|
@ApiLog |
|
|
|
@ApiOperation("app首页-站点列表数据") |
|
|
|
@ApiOperation("app首页-站点列表数据") |
|
|
|
@GetMapping("/appStationList") |
|
|
|
@GetMapping("/appStationList") |
|
|
|
@ApiOperationSupport(order = 11) |
|
|
|
@ApiOperationSupport(order = 2) |
|
|
|
public R<List<AppStationAreaVo>> appStationList(@ApiParam(value = "机构ID") Long deptId) { |
|
|
|
public R<List<AppStationAreaVo>> appStationList(@ApiParam(value = "机构ID") Long deptId) { |
|
|
|
return R.data(appService.appStationList(deptId)); |
|
|
|
return R.data(appService.appStationList(deptId)); |
|
|
|
} |
|
|
|
} |
|
|
@ -47,7 +47,7 @@ public class AppHomeController extends BladeController { |
|
|
|
@ApiLog |
|
|
|
@ApiLog |
|
|
|
@ApiOperation("app首页-当班数据") |
|
|
|
@ApiOperation("app首页-当班数据") |
|
|
|
@GetMapping("/getDutyData") |
|
|
|
@GetMapping("/getDutyData") |
|
|
|
@ApiOperationSupport(order = 11) |
|
|
|
@ApiOperationSupport(order = 3) |
|
|
|
public R<List<AppAreaDutyVo>> getDutyData(@ApiParam(value = "区域机构ID") Long deptId) { |
|
|
|
public R<List<AppAreaDutyVo>> getDutyData(@ApiParam(value = "区域机构ID") Long deptId) { |
|
|
|
return R.data(appService.getDutyData(deptId)); |
|
|
|
return R.data(appService.getDutyData(deptId)); |
|
|
|
} |
|
|
|
} |
|
|
|