NewsNoticeController.java 346 B

12345678910111213141516171819202122
  1. package com.hssx.cloudmodel.controller;
  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 吴涛涛
  10. * @since 2019-08-09
  11. */
  12. @RestController
  13. @RequestMapping("/newsnotice")
  14. public class NewsNoticeController {
  15. }