You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.4 KiB
1.4 KiB
修改部门
此接口用于修改WMS中的部门 此接口需要认证,详情请查看《认证方式》。
基本信息
方法:POST
URL: http://localhost:8033/open/UpdateWmsDepartment
请求
请求参数
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
profile | String | 是 | 厂区 |
code | string | 是 | 部门编码 |
name | string | 是 | 部门名称 |
status | int | 是 | 状态 1:启用 0:不启用 |
parentCode | string | 否 | 上级部门 |
请求示例:
{
"data":{
"profile":"测试",
"code": "woniuDep",
"name":"测试部门",
"status": 1,
"parentCode":"",
}
}
响应
响应字段
字段 | 类型 | 说明 |
---|---|---|
clock | string | 当前服务器时钟。 |
status | string | 状态,ok:成功,error:错误,exception:异常 |
data | object | 成功后返回具体内容 |
data:
字段 | 类型 | 说明 |
---|
{
"clock": "2023-06-25 20:00:00.000",
"status": "ok",
"data": {
"key": "c1f3202cc1ac4a9baa0ea48813e44635",
"departmentname": "测试部门",
"departmentmark": "测试部门",
"canceled": null,
"departmentcode": "woniuDep",
"id": "woniuDep",
"supdepid": "",
"subcompanyid1": "",
"status": 1,
"created": "2023-12-06 15:15:56.911",
"updated": "2023-12-06 15:26:06.787",
"flag": 1
}
}