# table_record_batch_insert - Author: cornerstone365 - Repository: informat365/informat-next-ai-skills - Version: 20260206111450 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/informat365/informat-next-ai-skills - Web: https://mule.run/skillshub/@@informat365/informat-next-ai-skills~table_record_batch_insert:20260206111450 --- # _table_record_batch_insert ## 技能ID table_record_batch_insert ## 描述 批量插入指定数据表记录。必须按照提示词去新增对应表数据,不得新增与提示词无关的表数据。Args: tableId: 数据表ID,必须填写,数据来自调用_query_all_table_list得到的id字段,不要自己捏造;recordList: 记录列表,记录的key是数据表字段ID。Returns:批量插入数据表的数量 ## 工具调用 ### 思考 调用_table_record_batch_insert工具 ### 工具名称 _table_record_batch_insert ### 参数 { "type": "object", "properties": { "tableId": { "description": "数据表ID", "type": "string" }, "recordList": { "type": "array", "items": { "type": "object", "description": "记录字段键值对,键为字段ID,值为新数据.如果字段类型为Cascader时,如果是单选存储的结构是数组,如[\"广东省\",\"深圳市\",\"南山区\"],如果是多选就是二维数组。" } } }, "required": [ "tableId", "recordList" ] }