|
@@ -13,6 +13,8 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
@Service
|
|
|
public class ExamRegistrationPaymentServiceImpl extends BaseServiceImpl<Long, ExamRegistrationPayment> implements ExamRegistrationPaymentService {
|
|
|
|
|
@@ -50,6 +52,7 @@ public class ExamRegistrationPaymentServiceImpl extends BaseServiceImpl<Long, Ex
|
|
|
return examRegistrationPayment;
|
|
|
}
|
|
|
examRegistration.setStatus(StudentRegistrationStatusEnum.AUDIT_WAIT);
|
|
|
+ examRegistration.setUpdateTime(new Date());
|
|
|
if (examRegistrationService.update(examRegistration) <= 0) {
|
|
|
throw new BizException("报名状态更新失败");
|
|
|
}
|