PlatSynchronizeController.java 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. package com.project.zcustom.controller.synchronization;
  2. import com.project.common.core.domain.AjaxResult;
  3. import com.project.zcustom.service.synchronization.IPlatSynchronizeService;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RestController;
  8. @RestController
  9. @RequestMapping("/synchronize")
  10. public class PlatSynchronizeController {
  11. @Autowired
  12. private IPlatSynchronizeService platSynchronizeService;
  13. /*服务保障中心*/
  14. /**
  15. *便捷出入
  16. */
  17. @GetMapping("/getServiceAccess")
  18. public AjaxResult getServiceAccess() {
  19. return AjaxResult.success("操作成功",platSynchronizeService.getServiceAccess());
  20. }
  21. /**
  22. *便捷出入
  23. */
  24. @GetMapping("/getServiceBasics")
  25. public AjaxResult getServiceBasics() {
  26. return AjaxResult.success("操作成功",platSynchronizeService.getServiceBasics());
  27. }
  28. /**
  29. *便捷出入
  30. */
  31. @GetMapping("/getServiceBasicsCompany")
  32. public AjaxResult getServiceBasicsCompany() {
  33. return AjaxResult.success("操作成功",platSynchronizeService.getServiceBasicsCompany());
  34. }
  35. /**
  36. *便捷出入
  37. */
  38. @GetMapping("/getServiceBasicsServer")
  39. public AjaxResult getServiceBasicsServer() {
  40. return AjaxResult.success("操作成功",platSynchronizeService.getServiceBasicsServer());
  41. }
  42. /**
  43. *便捷出入
  44. */
  45. @GetMapping("/getServiceBasicsSystem")
  46. public AjaxResult getServiceBasicsSystem() {
  47. return AjaxResult.success("操作成功",platSynchronizeService.getServiceBasicsSystem());
  48. }
  49. /**
  50. *便捷出入
  51. */
  52. @GetMapping("/getServiceHealth")
  53. public AjaxResult getServiceHealth() {
  54. return AjaxResult.success("操作成功",platSynchronizeService.getServiceHealth());
  55. }
  56. /**
  57. *便捷出入
  58. */
  59. @GetMapping("/getServiceHealthIllness")
  60. public AjaxResult getServiceHealthIllness() {
  61. return AjaxResult.success("操作成功",platSynchronizeService.getServiceHealthIllness());
  62. }
  63. /**
  64. *便捷出入
  65. */
  66. @GetMapping("/getServiceEmployeeType")
  67. public AjaxResult getServiceEmployeeType() {
  68. return AjaxResult.success("操作成功",platSynchronizeService.getServiceEmployeeType());
  69. }
  70. /**
  71. *便捷出入
  72. */
  73. @GetMapping("/getServiceEmployeeTypeFlow")
  74. public AjaxResult getServiceEmployeeTypeFlow() {
  75. return AjaxResult.success("操作成功",platSynchronizeService.getServiceEmployeeTypeFlow());
  76. }
  77. /**
  78. *便捷出入
  79. */
  80. @GetMapping("/getServiceGreenFoods")
  81. public AjaxResult getServiceGreenFoods() {
  82. return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenFoods());
  83. }
  84. /**
  85. *便捷出入
  86. */
  87. @GetMapping("/getServiceGreenSmart")
  88. public AjaxResult getServiceGreenSmart() {
  89. return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenSmart());
  90. }
  91. /**
  92. *便捷出入
  93. */
  94. @GetMapping("/getServiceGreenSmartOther")
  95. public AjaxResult getServiceGreenSmartOther() {
  96. return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenSmartOther());
  97. }
  98. /**
  99. *便捷出入
  100. */
  101. @GetMapping("/getServiceGreenSmartRank")
  102. public AjaxResult getServiceGreenSmartRank() {
  103. return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenSmartRank());
  104. }
  105. /**
  106. *便捷出入
  107. */
  108. @GetMapping("/getServiceGreenSmartSafety")
  109. public AjaxResult getServiceGreenSmartSafety() {
  110. return AjaxResult.success("操作成功",platSynchronizeService.getServiceGreenSmartSafety());
  111. }
  112. /**
  113. *便捷出入
  114. */
  115. @GetMapping("/getServicePostStation")
  116. public AjaxResult getServicePostStation() {
  117. return AjaxResult.success("操作成功",platSynchronizeService.getServicePostStation());
  118. }
  119. /**
  120. *便捷出入
  121. */
  122. @GetMapping("/getServicePostStationChart")
  123. public AjaxResult getServicePostStationChart() {
  124. return AjaxResult.success("操作成功",platSynchronizeService.getServicePostStationChart());
  125. }
  126. /**
  127. *便捷出入
  128. */
  129. @GetMapping("/getServiceProperty")
  130. public AjaxResult getServiceProperty() {
  131. return AjaxResult.success("操作成功",platSynchronizeService.getServiceProperty());
  132. }
  133. /**
  134. *便捷出入
  135. */
  136. @GetMapping("/getServicePropertyList")
  137. public AjaxResult getServicePropertyList() {
  138. return AjaxResult.success("操作成功",platSynchronizeService.getServicePropertyList());
  139. }
  140. /**
  141. *便捷出入
  142. */
  143. @GetMapping("/getServicePropertyTools")
  144. public AjaxResult getServicePropertyTools() {
  145. return AjaxResult.success("操作成功",platSynchronizeService.getServicePropertyTools());
  146. }
  147. /**
  148. *便捷出入
  149. */
  150. @GetMapping("/getServiceBuilding")
  151. public AjaxResult getServiceBuilding() {
  152. return AjaxResult.success("操作成功",platSynchronizeService.getServiceBuilding());
  153. }
  154. /**
  155. *便捷出入
  156. */
  157. @GetMapping("/getServiceBuildingControl")
  158. public AjaxResult getServiceBuildingControl() {
  159. return AjaxResult.success("操作成功",platSynchronizeService.getServiceBuildingControl());
  160. }
  161. /**
  162. *便捷出入
  163. */
  164. @GetMapping("/getServiceBuildingAmmeterDetail")
  165. public AjaxResult getServiceBuildingAmmeterDetail() {
  166. return AjaxResult.success("操作成功",platSynchronizeService.getServiceBuildingAmmeterDetail());
  167. }
  168. @GetMapping("/getServiceBuildingLoadDetail")
  169. public AjaxResult getServiceBuildingLoadDetail() {
  170. return AjaxResult.success("操作成功",platSynchronizeService.getServiceBuildingLoadDetail());
  171. }
  172. /**
  173. *便捷出入
  174. */
  175. @GetMapping("/getServiceEngineerCamera")
  176. public AjaxResult getServiceEngineerCamera() {
  177. return AjaxResult.success("操作成功",platSynchronizeService.getServiceEngineerCamera());
  178. }
  179. /**
  180. *便捷出入
  181. */
  182. @GetMapping("/getServiceEngineerIssue")
  183. public AjaxResult getServiceEngineerIssue() {
  184. return AjaxResult.success("操作成功",platSynchronizeService.getServiceEngineerIssue());
  185. }
  186. /**
  187. *便捷出入
  188. */
  189. @GetMapping("/getServiceEngineerPlan")
  190. public AjaxResult getServiceEngineerPlan() {
  191. return AjaxResult.success("操作成功",platSynchronizeService.getServiceEngineerPlan());
  192. }
  193. /**
  194. *便捷出入
  195. */
  196. @GetMapping("/getServiceEngineerProject")
  197. public AjaxResult getServiceEngineerProject() {
  198. return AjaxResult.success("操作成功",platSynchronizeService.getServiceEngineerProject());
  199. }
  200. /**
  201. *便捷出入
  202. */
  203. @GetMapping("/getServiceLogisticsHousing")
  204. public AjaxResult getServiceLogisticsHousing() {
  205. return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogisticsHousing());
  206. }
  207. /**
  208. *便捷出入
  209. */
  210. @GetMapping("/getServiceLogistics")
  211. public AjaxResult getServiceLogistics() {
  212. return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogistics());
  213. }
  214. /**
  215. *便捷出入
  216. */
  217. @GetMapping("/getServiceLogisticsBuildingAsset")
  218. public AjaxResult getServiceLogisticsBuildingAsset() {
  219. return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogisticsBuildingAsset());
  220. }
  221. /**
  222. *便捷出入
  223. */
  224. @GetMapping("/getServiceLogisticsOfficeAsset")
  225. public AjaxResult getServiceLogisticsOfficeAsset() {
  226. return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogisticsOfficeAsset());
  227. }
  228. /**
  229. *便捷出入
  230. */
  231. @GetMapping("/getServiceLogisticsServiceAsset")
  232. public AjaxResult getServiceLogisticsServiceAsset() {
  233. return AjaxResult.success("操作成功",platSynchronizeService.getServiceLogisticsServiceAsset());
  234. }
  235. /**
  236. *便捷出入
  237. */
  238. @GetMapping("/getServicePublicCar")
  239. public AjaxResult getServicePublicCar() {
  240. return AjaxResult.success("操作成功",platSynchronizeService.getServicePublicCar());
  241. }
  242. /**
  243. *便捷出入
  244. */
  245. @GetMapping("/getServicePublicCarChange")
  246. public AjaxResult getServicePublicCarChange() {
  247. return AjaxResult.success("操作成功",platSynchronizeService.getServicePublicCarChange());
  248. }
  249. /**
  250. *便捷出入
  251. */
  252. @GetMapping("/getServicePublicCarWarn")
  253. public AjaxResult getServicePublicCarWarn() {
  254. return AjaxResult.success("操作成功",platSynchronizeService.getServicePublicCarWarn());
  255. }
  256. /**
  257. *便捷出入
  258. */
  259. @GetMapping("/getServicePublicCarRank")
  260. public AjaxResult getServicePublicCarRank() {
  261. return AjaxResult.success("操作成功",platSynchronizeService.getServicePublicCarRank());
  262. }
  263. }