[*]
This commit is contained in:
@@ -13,9 +13,19 @@
|
||||
<artifactId>taoyao-meeting</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>会议</name>
|
||||
<description>会议模式、广播模式、单人对讲</description>
|
||||
<name>taoyao-meeting</name>
|
||||
<description>会议:会议模式、广播模式、单人对讲</description>
|
||||
|
||||
<dependencies></dependencies>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springdoc</groupId>
|
||||
<artifactId>springdoc-openapi-ui</artifactId>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,25 @@
|
||||
package com.acgist.taoyao.meeting.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
|
||||
/**
|
||||
* 房间
|
||||
*
|
||||
* @author acgist
|
||||
*/
|
||||
@Tag(name = "房间", description = "房间管理")
|
||||
@RestController
|
||||
@RequestMapping("/room")
|
||||
public class RoomController {
|
||||
|
||||
@Operation(summary = "进入房间", description = "进入房间,如果房间不存在时自动创建。")
|
||||
@GetMapping("/enter")
|
||||
public void enter(String roomId) {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user