NewsController.java 293 B

1234567891011121314151617
  1. package com.hhsx.minigame.controller;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. /**
  5. * @author 吴涛涛
  6. * @since 2019-09-17
  7. */
  8. @RestController
  9. @RequestMapping("/news")
  10. public class NewsController {
  11. }