This commit is contained in:
baozhipeng
2021-09-10 11:43:18 +08:00
parent 8ea20ce13b
commit 44218fd769
@@ -88,7 +88,7 @@ public class PayPaymentRecordController extends JeroController<PayPaymentRecord,
* 编辑来款
*/
@ApiOperation(value="编辑来款", notes="编辑来款")
@PutMapping(value = "/editAmountReceived")
@PostMapping(value = "/editAmountReceived")
public Result<?> editAmountReceived(@RequestBody PayPaymentRecord payPaymentRecord) {
payPaymentRecordService.updateById(payPaymentRecord);
return Result.OK("编辑成功!");
@@ -118,7 +118,7 @@ public class PayPaymentRecordController extends JeroController<PayPaymentRecord,
* 编辑开票
*/
@ApiOperation(value="编辑开票", notes="编辑开票")
@PutMapping(value = "/editPayBill")
@PostMapping(value = "/editPayBill")
public Result<?> editPayBill(@RequestBody PayMailBill payMailBill) {
payMailBillService.updateById(payMailBill);
return Result.OK("编辑成功!");