MES标准开放接口
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.3 KiB

修改员工

此接口用于修改WMS中的员工 此接口需要认证,详情请查看《认证方式》。


基本信息

方法:POST
URL: http://localhost:8033/open/UpdateWmsUser


请求

请求参数

参数名 类型 必填 说明
profile String 厂区
userName string 用户登录名
key string 记录主键
password string 密码
name string 员工姓名
departmentCode string 部门编码
erpCode string ERP员工编号
status int 状态

请求示例:

{
  "data":{
        "profile":"测试",
        "key": "5fd5de9e9d48417881aa457be6500bcb",
        "userName":"zhangyz",
        "password":"123456",
        "name":"非凡",
        "departmentCode":"",
        "erpCode":"",
        "status":0,
  }
}

响应

响应字段

字段 类型 说明
clock string 当前服务器时钟。
status string 状态,ok:成功,error:错误,exception:异常
data object 成功后返回具体内容

data:

字段 类型 说明
{
  "clock": "2023-06-25 20:00:00.000",
  "status": "ok",
  "data": {}
}