- j2
- 消息服务
- 通知提醒
- 消息中间件
- 系统管理
- j3
- c1
- 基础配置
- 人员配置
- c2
- 公司配置
- 行业分类
- 企业属性
- 企业状态
- 企业等级
- 公司信息
- c3
- 储位管理
- 库内管理
- c4
- c5
- c7
- c8
- c6
- J5
- j4
- j8
- j1
- j7
修改公司信息
PUT
/cominfo/modify-info
最后修改时间:2025-03-08 11:30:20
责任人:未设置
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
id
string
公司id
companyId
string
公司代码
zhabbr
string
公司中文简称
zhful
string
公司中文全称
zhaddr
string
中文地址
enabbr
string
公司英文简称
enful
string
公司英文全称
示例
{
"id": "string",
"companyId": "string",
"zhabbr": "string",
"zhful": "string",
"zhaddr": "string",
"enabbr": "string",
"enful": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT '/cominfo/modify-info' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "string",
"companyId": "string",
"zhabbr": "string",
"zhful": "string",
"zhaddr": "string",
"enabbr": "string",
"enful": "string"
}'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
>= -2147483648<= 2147483647
默认值:
10000
message
string
提示信息
默认值:
success
data
object (CompanyInfoDTO)
数据对象
id
string
公司id
companyId
string
公司代码
zhabbr
string
公司中文简称
zhful
string
公司中文全称
zhaddr
string
中文地址
enabbr
string
公司英文简称
enful
string
公司英文全称
示例
{
"code": 10000,
"message": "success",
"data": {
"id": "string",
"companyId": "string",
"zhabbr": "string",
"zhful": "string",
"zhaddr": "string",
"enabbr": "string",
"enful": "string"
}
}