智慧水务管理系统 - 精河县供水工程综合管理平台

BIRestController.java 400B

123456789101112131415
  1. package com.water.bi.controller;
  2. import org.springframework.web.bind.annotation.GetMapping;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. @RestController
  6. @RequestMapping("/api/bi")
  7. public class BIRestController {
  8. @GetMapping("/health")
  9. public String health() {
  10. return "BI Service is running";
  11. }
  12. }