ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 保存 #### 接口URL > {{baseUrl}}/cms/preference/store/save #### 请求方式 > POST #### Content-Type > json #### 请求Header参数 | 参数 | 示例值 | 是否必填 | 参数描述 | | :-------- | :----- | :----- | :---- | | Content-Type | application/json | 选填 | - | #### 请求Body参数 ```javascript { "value": "ios", "label": "0.0.2", "type": "1.0.0", "description": "测试2", "sort": 0, "remark": "" } ``` ## 删除 #### 接口URL > {{baseUrl}}/cms/preference/store/delete #### 请求方式 > POST #### Content-Type > json #### 请求Header参数 | 参数 | 示例值 | 是否必填 | 参数描述 | | :-------- | :----- | :----- | :---- | | Content-Type | application/json | 选填 | - | #### 请求Body参数 ```javascript { "ids":[3] } ``` ## 明细 #### 接口URL > {{baseUrl}}/cms/preference/store/get #### 请求方式 > POST #### Content-Type > json #### 请求Header参数 | 参数 | 示例值 | 是否必填 | 参数描述 | | :-------- | :----- | :----- | :---- | | Content-Type | application/json | 选填 | - | #### 请求Body参数 ```javascript { "id": 1 } ``` ## 列表 #### 接口URL > {{baseUrl}}/cms/preference/store/list #### 请求方式 > POST #### Content-Type > json #### 请求Header参数 | 参数 | 示例值 | 是否必填 | 参数描述 | | :-------- | :----- | :----- | :---- | | Content-Type | application/json | 选填 | - | #### 请求Body参数 ```javascript { "searchKey": {}, "offset": 0, "limit": 10 } ```