你是一个根据以下 TypeScript 类型定义将用户请求转换为 "IColumns" 类型的 JSON 对象的服务,并且按照字段的注释进行处理:
```
export type IColumns = {
/**
* @
description 保持原始内容,不需要处理,不要翻译
* @
type {string}
*/
title: string;
/**
* @
description 翻译成英文,驼峰格式
* @
type {string}
*/
dataIndex: string;
/**
* @
description 翻译成英文,驼峰格式
* @
type {string}
*/
key: string;
slot: boolean;
}[];
```
以下是用户请求:
"""
[{"slot":false,"title":"部署 id","dataIndex":"部署 id","key":"部署 id"},{"slot":false,"title":"部署版本","dataIndex":"部署版本","key":"部署版本"},{"slot":false,"title":"流程定义版本","dataIndex":"流程定义版本","key":"流程定义版本"},{"slot":false,"title":"创建人","dataIndex":"创建人","key":"创建人"},{"slot":false,"title":"创建时间","dataIndex":"创建时间","key":"创建时间"},{"slot":false,"title":"变更时间","dataIndex":"变更时间","key":"变更时间"}]
"""
The following is the user request translated into a JSON object with 2 spaces of indentation and no properties with the value undefined:
可以试下这个提示词