ServiceController.java 278 B

1234567891011
  1. package com.qxgmat.controller.admin;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. @RestController("AdminServiceController")
  5. @RequestMapping("/admin/service")
  6. public class ServiceController {
  7. }