新增中类资料接口

一、说明

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

二、参数说明

1、请求方式

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

2、header参数

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

3、请求参数

字段 字段名 字段类型 长度 必填 说明
owner_code 货主编码 String 30 如未启用多货主,则默认赋值为“OWNER”,反之,则传货主编码
category_code 中类代号 String 50  
category_name 中类名称 String 200  
category_upper 上层中类代号 String 50   除根中类外,其他中类,该栏位为必填
stop_date 停用日期 Datatime      
remark 备注 String 60    
operator_code 录入员 String 30    
operate_time 录入日期 Datatime      

4、返回参数

  字段

字段名

说明

code

处理结果

0视为成功,其他视为失败

message

处理说明

 

owner_code

货主编码

 

category_code

中类代号

 

三、请求JSON范例

{
    "owner_code""OWNER"//必填,如未启用多货主,则默认赋值为“OWNER”,反之,则传货主编码
    "category_code""ALL"//中类代号,必须唯一
    "category_name""总中类"//中类名称
    "category_upper"""//上层中类,除根中类代号外,其他中类代号,该栏位为必填
    "stop_date"""//停用日期
    "remark"""//备注
    "operator_code""001"//录入人员;
    "operate_time""2023-09-09 14:00:00" //录入时间
}

四、返回JSON范例

{
    "code"0
    "message""新增成功"
    "owner_code""OWNER", 
    "category_code""ALL"
}