新增案件 #58

Merged
wangqiong123 merged 1 commits from wq1 into dev 2024-02-01 03:33:20 +00:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 13a6443eab - Show all commits
@@ -34,6 +34,10 @@ public class PaymentDetailVO {
* 缴费单
*/
private List<MsCaseAttach> caseAttachList;
/**
* 被申请人缴费单
*/
private List<MsCaseAttach> resCaseAttachList;
/**
* 申请人
*/
@@ -255,6 +255,7 @@ public class MsCasePaymentServiceImpl implements MsCasePaymentService {
}
// 查询缴费单
result.setCaseAttachList(caseAttachMapper.listCaseAttachByCaseIdAndType(id, AnnexTypeEnum.PAYMENT_RECEIPT.getCode()));
result.setResCaseAttachList(caseAttachMapper.listCaseAttachByCaseIdAndType(id, AnnexTypeEnum.RES_PAYMENT_RECEIPT.getCode()));
return result;
}