This commit is contained in:
张良(004796)
2024-01-12 19:01:24 +08:00
parent 28623f17d1
commit 69a72b9e89
5 changed files with 119 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
package com.ruoyi.cai.controller.app;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/api/user/member")
@Slf4j
@Tag(name = "用户会员接口")
public class UserMemberController {
}