ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 基础设置-编辑 **接口地址**:`/mtcge/basic/settings/edit` **请求方式**:`PUT,POST` **请求数据类型**:`application/json` **响应数据类型**:`*/*` **接口描述**:<p>基础设置-编辑</p> **请求示例**: ```javascript [ { "basicDescribe": "", "basicOrder": 0, "bigCategory": "", "code": "", "componentType": "", "createBy": "", "createTime": "", "id": "", "jsonString": "", "name": "", "sfsy": "", "sysOrgCode": "", "updateBy": "", "updateTime": "" } ] ``` **请求参数**: **请求参数**: | 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | schema | | -------- | -------- | ----- | -------- | -------- | ------ | |sysPosition|基础设置|body|true|array|mt_basic_settings对象| |&emsp;&emsp;basicDescribe|||false|string|| |&emsp;&emsp;basicOrder|||false|integer(int32)|| |&emsp;&emsp;bigCategory|||false|string|| |&emsp;&emsp;code|||false|string|| |&emsp;&emsp;componentType|||false|string|| |&emsp;&emsp;createBy|||false|string|| |&emsp;&emsp;createTime|||false|string(date-time)|| |&emsp;&emsp;id|||false|string|| |&emsp;&emsp;jsonString|||false|string|| |&emsp;&emsp;name|||false|string|| |&emsp;&emsp;sfsy|||false|string|| |&emsp;&emsp;sysOrgCode|||false|string|| |&emsp;&emsp;updateBy|||false|string|| |&emsp;&emsp;updateTime|||false|string(date-time)|| **响应状态**: | 状态码 | 说明 | schema | | -------- | -------- | ----- | |200|OK|接口返回对象«mt_basic_settings对象»| |201|Created|| |401|Unauthorized|| |403|Forbidden|| |404|Not Found|| **响应参数**: | 参数名称 | 参数说明 | 类型 | schema | | -------- | -------- | ----- |----- | |code|返回代码|integer(int32)|integer(int32)| |message|返回处理消息|string|| |result|返回数据对象|mt_basic_settings对象|mt_basic_settings对象| |&emsp;&emsp;basicDescribe||string|| |&emsp;&emsp;basicOrder||integer(int32)|| |&emsp;&emsp;bigCategory||string|| |&emsp;&emsp;code||string|| |&emsp;&emsp;componentType||string|| |&emsp;&emsp;createBy||string|| |&emsp;&emsp;createTime||string(date-time)|| |&emsp;&emsp;id||string|| |&emsp;&emsp;jsonString||string|| |&emsp;&emsp;name||string|| |&emsp;&emsp;sfsy||string|| |&emsp;&emsp;sysOrgCode||string|| |&emsp;&emsp;updateBy||string|| |&emsp;&emsp;updateTime||string(date-time)|| |success|成功标志|boolean|| |timestamp|时间戳|integer(int64)|integer(int64)| **响应示例**: ```javascript { "code": 0, "message": "", "result": { "basicDescribe": "", "basicOrder": 0, "bigCategory": "", "code": "", "componentType": "", "createBy": "", "createTime": "", "id": "", "jsonString": "", "name": "", "sfsy": "", "sysOrgCode": "", "updateBy": "", "updateTime": "" }, "success": true, "timestamp": 0 } ```