IntroduceDetailController.java 353 B

12345678910111213141516171819
  1. package com.diagbot.web;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. /**
  5. * <p>
  6. * 提示信息明细 前端控制器
  7. * </p>
  8. *
  9. * @author zhaops
  10. * @since 2018-11-15
  11. */
  12. @RestController
  13. @RequestMapping("/introduceDetail")
  14. public class IntroduceDetailController {
  15. }