|
@@ -14,6 +14,7 @@ import com.fdkankan.openApi.service.www.IUserService;
|
|
|
import com.fdkankan.openApi.vo.www.FdRoomParam;
|
|
|
import com.fdkankan.openApi.vo.www.FdkkLoginParamVo;
|
|
|
import com.fdkankan.web.response.ResultData;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
@@ -32,6 +33,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping("/takelook")
|
|
|
+@Slf4j
|
|
|
public class TakeLookController extends BaseController {
|
|
|
|
|
|
@Autowired
|
|
@@ -47,7 +49,7 @@ public class TakeLookController extends BaseController {
|
|
|
throw new ApiBusinessException(ErrorCode.FAILURE_CODE_3004);
|
|
|
}
|
|
|
JSONObject jsonObject = fdKKClient.roomList(param, token);
|
|
|
- System.out.println(jsonObject);
|
|
|
+ log.info(jsonObject.toJSONString());
|
|
|
return jsonObject;
|
|
|
}
|
|
|
|