缴费确认加驳回

This commit is contained in:
18792927508
2024-05-06 18:07:38 +08:00
parent 9840cae11d
commit 8c22728855
8 changed files with 137 additions and 85 deletions
@@ -75,10 +75,10 @@ public class CasePaymentController {
// @PreAuthorize("@ss.hasPermi('paymentManagement:list:payconfirm')")
@PutMapping("/confirm")
public AjaxResult confirmPayment(@Validated @RequestBody BatchCaseApplication batchCaseApplication) {
if(CollectionUtil.isEmpty(batchCaseApplication.getIds())){
if(CollectionUtil.isEmpty(batchCaseApplication.getIds()) || batchCaseApplication.getAgreeOrNotCheck()==null){
return AjaxResult.error("参数校验失败");
}
return paymentService.confirmPayment(batchCaseApplication.getIds());
return paymentService.confirmPayment(batchCaseApplication);
}
/**
* 缴费列表查询