POST spsapi/SalaryBusiness/AddPickingGroupSalary
添加仓库绩效统计-拣货组 薪资数据
Request Information
URI Parameters
None.
Body Parameters
AddSalaryPickingGroupRequestName | Description | Type | Additional information |
---|---|---|---|
salary_date |
添加月份 例:2023-08 |
string |
None. |
emp_id |
员工编号(主键) |
integer |
None. |
rows_num |
行数 |
integer |
None. |
rows_yihai_num |
益海订单行数 |
integer |
None. |
rows_3m |
3m片区 |
decimal number |
None. |
backup_performance |
备用绩效 |
decimal number |
None. |
person_type |
人员类型(配货员,补货员) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "salary_date": "sample string 1", "emp_id": 2, "rows_num": 3, "rows_yihai_num": 4, "rows_3m": 5.0, "backup_performance": 6.0, "person_type": "sample string 7" }
application/xml, text/xml
Sample:
<AddSalaryPickingGroupRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.SalaryModels"> <backup_performance>6</backup_performance> <emp_id>2</emp_id> <person_type>sample string 7</person_type> <rows_3m>5</rows_3m> <rows_num>3</rows_num> <rows_yihai_num>4</rows_yihai_num> <salary_date>sample string 1</salary_date> </AddSalaryPickingGroupRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
SalaryBaseResponseName | Description | Type | Additional information |
---|---|---|---|
errcode |
错误编码 100:error 401:鉴权失败;200:成功;500:内部错误; |
ErrCode |
None. |
message |
消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "errcode": 2, "message": "sample string 1" }
application/xml, text/xml
Sample:
<SalaryBaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.SalaryModels"> <errcode>Error</errcode> <message>sample string 1</message> </SalaryBaseResponse>