|
@@ -94,7 +94,7 @@ public class PromoAccountServiceImpl extends ServiceImpl<PromoAccountMapper, Pro
|
|
.eq(PromoAccountLog::getAccountId, promoAccountListVO.getId())
|
|
.eq(PromoAccountLog::getAccountId, promoAccountListVO.getId())
|
|
.isNull(PromoAccountLog::getEndTime));
|
|
.isNull(PromoAccountLog::getEndTime));
|
|
if (promoAccountLog != null) {
|
|
if (promoAccountLog != null) {
|
|
- promoAccountListVO.setStartTime(promoAccountLog.getStartTime());
|
|
|
|
|
|
+ promoAccountListVO.setStartTime(promoAccountLog.getStartTime() == null ? null : promoAccountLog.getStartTime().toLocalDate());
|
|
}
|
|
}
|
|
promoAccountListVO.setAccountTypeName(PromoAccountTypeEnum.getNameByType(promoAccountListVO.getAccountType()));
|
|
promoAccountListVO.setAccountTypeName(PromoAccountTypeEnum.getNameByType(promoAccountListVO.getAccountType()));
|
|
return promoAccountListVO;
|
|
return promoAccountListVO;
|