UserRoleController.java 313 B

12345678910111213141516
  1. package com.flyer.foster.controller;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. /**
  5. * 用户角色
  6. *
  7. * @author flyer
  8. * @since 2024-05-06
  9. */
  10. @RestController
  11. @RequestMapping("/user-role")
  12. public class UserRoleController {
  13. }