ServiceFlowController.java 468 B

12345678910111213141516171819
  1. package com.yihu.hos.arbiter.controllers;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RequestMethod;
  4. import org.springframework.web.bind.annotation.RestController;
  5. /**
  6. * @author Airhead
  7. * @since 2017/2/6.
  8. */
  9. @RestController
  10. @RequestMapping("/serviceFlow")
  11. public class ServiceFlowController {
  12. @RequestMapping(method = RequestMethod.GET)
  13. public String get() {
  14. return "{}";
  15. }
  16. }