Authorization: Bearer ********************
{
"rosterId": 2,
"effectiveDate": "2024-10-25",
"confidentialityAllowance": 110.0,
"commissionBonus": 220.0,
"roomLeader": 330.0,
"outOfTown": 440.0,
"outstandingEmployee": 550.0,
"otherIncome": 660.0,
"otherExpend": 770.0,
"recommendId": 4,
"remarks": "备注"
}
curl --location --request POST '/personnelRoster/rewardRecord' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"rosterId": 2,
"effectiveDate": "2024-10-25",
"confidentialityAllowance": 110.0,
"commissionBonus": 220.0,
"roomLeader": 330.0,
"outOfTown": 440.0,
"outstandingEmployee": 550.0,
"otherIncome": 660.0,
"otherExpend": 770.0,
"recommendId": 4,
"remarks": "备注"
}'
{
"rosterId": 2,
"effectiveDate": "2024-10-25",
"confidentialityAllowance": 110,
"commissionBonus": 220,
"roomLeader": 330,
"outOfTown": 440,
"outstandingEmployee": 550,
"otherIncome": 660,
"otherExpend": 770,
"recommendId": 4,
"remarks": "备注"
}