新增部门资料接口

一、说明

此接口主要用于第三方系统新增部门资料。

二、参数说明

1、请求方式

请求方式 POST
接口地址 http://服务器IP或机器名或域名/WMS/API/SYS/CreateDepartment
格式 JSON
编码类型 UTF-8

2、header参数

KEY VALUE
Content-Type application/json
Authorization token值 说明:授权接口所获取的值

3、请求参数

字段 字段名 字段类型 长度 必填 说明
department 部门代号 String 30  
department_name 部门名称 String 100  
english_name 英文名称 String 200    
department_upper 上层部门代号 String 8    
stop_date 停用日期 Datatime      
operator_code 录入员 String 30    
operate_time 录入日期 Datatime      

4、返回参数

字段 字段名 说明
code 处理结果 0视为成功,其他视为失败
message 处理说明  
department 部门代号  

三、请求JSON范例

{
    "department""A001"//部门代号,必须唯一
    "department_name""财务部"//部门名称
    "english_name"""//英文名称
    "department_upper""00000000"//上层部门,必填
    "stop_date"""//停用日期
    "operator_code""001"//录入人员;
    "operate_time""2024-08-07 14:00:00" //录入时间
}

四、返回JSON范例

{
    "code"0
    "message""新增成功", 
    "department""A001"
}