|
@@ -7,6 +7,7 @@ import com.fdkankan.tk.exception.BusinessException;
|
|
|
import com.fdkankan.tk.request.RoomAddParam;
|
|
|
import com.fdkankan.tk.request.RoomListParam;
|
|
|
import com.fdkankan.tk.service.IRoomService;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -17,6 +18,7 @@ import java.io.IOException;
|
|
|
*房间管理
|
|
|
*/
|
|
|
@RestController
|
|
|
+@Slf4j
|
|
|
public class RoomController extends BaseController{
|
|
|
|
|
|
@Autowired
|
|
@@ -35,6 +37,7 @@ public class RoomController extends BaseController{
|
|
|
*/
|
|
|
@GetMapping("/roomAddView")
|
|
|
public ResultData roomAddView(@RequestParam(required = false) String roomId){
|
|
|
+ log.info("roomAddView-----------------------:roomId{}",roomId);
|
|
|
roomService.roomAddView(roomId);
|
|
|
return ResultData.ok();
|
|
|
}
|