package com.matrix.system.api.action; import io.swagger.annotations.Api; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * @author wzy * @date 2020-12-21 **/ @Api(value = "UsersAction", tags = "用户中心接口类") @RestController @RequestMapping(value = "/api/user") public class UsersAction { }