|
|
|
@ -73,7 +73,8 @@ public class ApplyRecordManager {
|
|
|
|
|
.eq(TdApplyAfter::getApplyId, applyId)
|
|
|
|
|
.orderByDesc(TdApplyAfter::getCreateTime).list();
|
|
|
|
|
userRecordDTO.setApplyAfterList(userAfters);
|
|
|
|
|
List<TdApplyBefore> userBefores = applyBeforeService.lambdaQuery().eq(TdApplyBefore::getApplyId, applyId)
|
|
|
|
|
List<TdApplyBefore> userBefores = applyBeforeService.lambdaQuery()
|
|
|
|
|
.eq(TdApplyBefore::getApplyId, applyId)
|
|
|
|
|
.orderByDesc(TdApplyBefore::getCreateTime).list();
|
|
|
|
|
userRecordDTO.setApplyBeforeList(userBefores);
|
|
|
|
|
return userRecordDTO;
|
|
|
|
|