123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- package com.project.zcustom.controller.synchronization;
- import com.project.common.core.domain.AjaxResult;
- import com.project.zcustom.service.synchronization.IPlatSynchronizeService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- @RestController
- @RequestMapping("/synchronize")
- public class PlatSynchronizeController {
- @Autowired
- private IPlatSynchronizeService platSynchronizeService;
- /*服务保障中心*/
- /**
- *便捷出入
- */
- @GetMapping("/getServiceAccess")
- public AjaxResult getServiceAccess() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceAccess());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceBasics")
- public AjaxResult getServiceBasics() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceBasics());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceBasicsCompany")
- public AjaxResult getServiceBasicsCompany() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceBasicsCompany());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceBasicsServer")
- public AjaxResult getServiceBasicsServer() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceBasicsServer());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceBasicsSystem")
- public AjaxResult getServiceBasicsSystem() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceBasicsSystem());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceHealth")
- public AjaxResult getServiceHealth() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceHealth());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceHealthIllness")
- public AjaxResult getServiceHealthIllness() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceHealthIllness());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceEmployeeType")
- public AjaxResult getServiceEmployeeType() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceEmployeeType());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceEmployeeTypeFlow")
- public AjaxResult getServiceEmployeeTypeFlow() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceEmployeeTypeFlow());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceGreenFoods")
- public AjaxResult getServiceGreenFoods() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenFoods());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceGreenSmart")
- public AjaxResult getServiceGreenSmart() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenSmart());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceGreenSmartOther")
- public AjaxResult getServiceGreenSmartOther() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenSmartOther());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceGreenSmartRank")
- public AjaxResult getServiceGreenSmartRank() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenSmartRank());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceGreenSmartSafety")
- public AjaxResult getServiceGreenSmartSafety() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenSmartSafety());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServicePostStation")
- public AjaxResult getServicePostStation() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServicePostStation());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServicePostStationChart")
- public AjaxResult getServicePostStationChart() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServicePostStationChart());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceProperty")
- public AjaxResult getServiceProperty() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceProperty());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServicePropertyList")
- public AjaxResult getServicePropertyList() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServicePropertyList());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServicePropertyTools")
- public AjaxResult getServicePropertyTools() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServicePropertyTools());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceBuilding")
- public AjaxResult getServiceBuilding() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceBuilding());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceBuildingControl")
- public AjaxResult getServiceBuildingControl() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceBuildingControl());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceBuildingAmmeterDetail")
- public AjaxResult getServiceBuildingAmmeterDetail() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceBuildingAmmeterDetail());
- }
- @GetMapping("/getServiceBuildingLoadDetail")
- public AjaxResult getServiceBuildingLoadDetail() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceBuildingLoadDetail());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceEngineerCamera")
- public AjaxResult getServiceEngineerCamera() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceEngineerCamera());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceEngineerIssue")
- public AjaxResult getServiceEngineerIssue() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceEngineerIssue());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceEngineerPlan")
- public AjaxResult getServiceEngineerPlan() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceEngineerPlan());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceEngineerProject")
- public AjaxResult getServiceEngineerProject() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceEngineerProject());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceLogisticsHousing")
- public AjaxResult getServiceLogisticsHousing() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogisticsHousing());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceLogistics")
- public AjaxResult getServiceLogistics() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogistics());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceLogisticsBuildingAsset")
- public AjaxResult getServiceLogisticsBuildingAsset() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogisticsBuildingAsset());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceLogisticsOfficeAsset")
- public AjaxResult getServiceLogisticsOfficeAsset() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogisticsOfficeAsset());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServiceLogisticsServiceAsset")
- public AjaxResult getServiceLogisticsServiceAsset() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogisticsServiceAsset());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServicePublicCar")
- public AjaxResult getServicePublicCar() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServicePublicCar());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServicePublicCarChange")
- public AjaxResult getServicePublicCarChange() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServicePublicCarChange());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServicePublicCarWarn")
- public AjaxResult getServicePublicCarWarn() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServicePublicCarWarn());
- }
- /**
- *便捷出入
- */
- @GetMapping("/getServicePublicCarRank")
- public AjaxResult getServicePublicCarRank() {
- return AjaxResult.success("操作成功",platSynchronizeService.getServicePublicCarRank());
- }
- }
|