|
|
@@ -150,6 +150,12 @@ public class CasePaymentServiceImpl implements ICasePaymentService {
|
|
150
|
150
|
}
|
|
151
|
151
|
}
|
|
152
|
152
|
}
|
|
|
153
|
+ //更改记录表里的支付状态和支付时间
|
|
|
154
|
+ CasePaymentRecord casePaymentRecord = new CasePaymentRecord();
|
|
|
155
|
+ casePaymentRecord.setPaymentStatus(1);
|
|
|
156
|
+ casePaymentRecord.setPaymentTime(new Date());
|
|
|
157
|
+ casePaymentRecord.setUpdateTime(new Date());
|
|
|
158
|
+ casePaymentRecordMapper.update(casePaymentRecord);
|
|
153
|
159
|
// 新增日志
|
|
154
|
160
|
CaseLogUtils.insertCaseLog(caseApplication.getId(),CaseApplicationConstants.CASE_CROSSEXAMI,"");
|
|
155
|
161
|
|