### 新增人情事件 POST {{api_url}}/favor/add Content-Type: application/json { "favorItemList": [ { "returnGift": { "title": "100斤猪肉", "type": "T", "amount": 1300 }, "givePersonId": 2, "giveGift": { "title": "1万", "type": "M", "amount": 10000 }, "remark": "恭喜" }, { "receivePersonId": 1, "returnGift": { "title": "200斤猪肉", "type": "T", "amount": 2300 }, "givePersonId": 3, "giveGift": { "title": "2万", "type": "M", "amount": 20000 }, "remark": "恭喜" }, { "receivePersonId": 1, "returnGift": { "title": "300斤猪肉", "type": "T", "amount": 2300 }, "givePersonId": 3, "giveGift": { "title": "3万", "type": "M", "amount": 30000 }, "remark": "恭喜" } ], "holdDate": "2024-08-01", "title": "八一建党节", "holdPersonId": 1, "incomeAmount": 1999.99, "payAmount": 99.99, "remark": "祝贺" } ### 查询人情事件详情 GET {{api_url}}/favor/detail/2 ### 修改人情事件 POST http://localhost:8080/favor/update Content-Type: application/json { "id": 1, "holdDate": "2024-08-01", "title": "八一建党节1", "holdPersonId": 1, "incomeAmount": 11999.99, "payAmount": 199.99, "remark": "祝贺1", "favorItemList": [ { "id": 9, "favorId": 1, "receivePersonId": 1, "givePersonId": 6, "remark": "恭喜恭喜恭喜", "returnGift": { "id": 16, "title": "10斤牛肉", "type": "T", "amount": 160.00 }, "giveGift": { "id": 15, "title": "¥2000", "type": "M", "amount": 2000.00 } }, { "favorId": 1, "receivePersonId": 1, "givePersonId": 7, "remark": "恭喜发财", "returnGift": { "title": "面粉", "type": "T", "amount": 25.00 }, "giveGift": { "title": "¥400", "type": "M", "amount": 400.00 } } ] } ### 删除人情事件 POST {{api_url}}/favor/delete/1 ### 查询人情事件列表 GET {{api_url}}/favor/listPage Content-Type: application/json { "page": { "pageNo": 1, "pageSize": 10 } }