|
@@ -165,9 +165,10 @@ public class TempDirectorTrainingCampDetailServiceImpl extends ServiceImpl<TempD
|
|
|
}
|
|
|
entity.setUserId(sysUser.getId());
|
|
|
this.saveOrUpdate(entity);
|
|
|
+ TempDirectorTrainingCampDetail campDetail = this.getById(entity.getId());
|
|
|
TempDirectorTrainingCampDetailWrapper.ApplyCampResult applyCampResult = new TempDirectorTrainingCampDetailWrapper.ApplyCampResult();
|
|
|
- applyCampResult.setCampDetailId(entity.getId());
|
|
|
- applyCampResult.setPaymentStatus(entity.getPaymentStatus());
|
|
|
+ applyCampResult.setCampDetailId(campDetail.getId());
|
|
|
+ applyCampResult.setPaymentStatus(campDetail.getPaymentStatus());
|
|
|
// 删除缓存锁
|
|
|
redissonClient.getBucket(submitLockKey).delete();
|
|
|
return applyCampResult;
|