This commit is contained in:
dute7liang
2024-01-13 20:08:07 +08:00
parent 69a72b9e89
commit 7a6f9eecd3
9 changed files with 66 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/api/im")
@Tag(name = "IM相关的接口")
public class ImController {
public class ImAppController {
@Autowired
private ImService imService;

View File

@@ -9,5 +9,5 @@ import org.springframework.web.bind.annotation.RestController;
@RequestMapping("/api/user/member")
@Slf4j
@Tag(name = "用户会员接口")
public class UserMemberController {
public class UserMemberAppController {
}