This commit is contained in:
2025-11-06 12:03:48 +08:00
parent 3448cde99d
commit 4527dc0ecd
6 changed files with 618 additions and 37 deletions

View File

@@ -105,5 +105,15 @@ public interface ITencentDocService {
* @return 用户信息
*/
JSONObject getUserInfo(String accessToken);
/**
* 批量更新表格batchUpdate API
*
* @param accessToken 访问令牌
* @param fileId 文件ID
* @param requestBody batchUpdate 请求体,包含 requests 数组
* @return 更新结果
*/
JSONObject batchUpdate(String accessToken, String fileId, JSONObject requestBody);
}