POST spsapi/SalaryBusiness/AddReviewGroupSalary
添加仓库绩效统计-复核组 薪资数据
Request Information
URI Parameters
None.
Body Parameters
AddSalaryReviewGroupRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| salary_date |
添加月份 例:2023-08 |
string |
None. |
| emp_id |
员工编号(主键) |
integer |
None. |
| wuliu_num |
物流单数 |
integer |
None. |
| wuliu_terminal_num |
终端物流单数 |
integer |
None. |
| wuliu_price |
物流单价 |
decimal number |
None. |
| shipping_num |
快递单数 |
integer |
None. |
| shipping_terminal_num |
终端快递单数 |
integer |
None. |
| shipping_price |
快递单价 |
decimal number |
None. |
| review_performance |
验货绩效(物流单数*物流单价+快递单数*快递单价) |
decimal number |
None. |
| weigh_days |
称重天数 |
integer |
None. |
| weigh_performance |
称重绩效((称重天数-3)*170) |
decimal number |
None. |
| sum_performance |
绩效合计 |
decimal number |
None. |
| pallet_money |
打托 |
decimal number |
None. |
| amount_performance |
绩效统计 |
decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"salary_date": "sample string 1",
"emp_id": 2,
"wuliu_num": 3,
"wuliu_terminal_num": 4,
"wuliu_price": 5.0,
"shipping_num": 6,
"shipping_terminal_num": 7,
"shipping_price": 8.0,
"review_performance": 9.0,
"weigh_days": 10,
"weigh_performance": 11.0,
"sum_performance": 12.0,
"pallet_money": 13.0,
"amount_performance": 14.0
}
application/xml, text/xml
Sample:
<AddSalaryReviewGroupRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.SalaryModels"> <amount_performance>14</amount_performance> <emp_id>2</emp_id> <pallet_money>13</pallet_money> <review_performance>9</review_performance> <salary_date>sample string 1</salary_date> <shipping_num>6</shipping_num> <shipping_price>8</shipping_price> <shipping_terminal_num>7</shipping_terminal_num> <sum_performance>12</sum_performance> <weigh_days>10</weigh_days> <weigh_performance>11</weigh_performance> <wuliu_num>3</wuliu_num> <wuliu_price>5</wuliu_price> <wuliu_terminal_num>4</wuliu_terminal_num> </AddSalaryReviewGroupRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
SalaryBaseResponse| Name | 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>