## 个人信息返回等级字段调整;

This commit is contained in:
cabbage 2025-10-27 15:48:31 +08:00
parent 3266369468
commit 9dc4a3375e
2 changed files with 3 additions and 4 deletions

View File

@ -65,7 +65,7 @@ public class MemberRetailServiceImpl implements IMemberRetailService {
.settleCountrySquareIcon(memberDataDTO.getSettleCountrySquareIcon())
.exchangeRate(memberDataDTO.getExchangeRate())
.pkGradeVal(memberDataDTO.getGradeVal())
.gradeIcon(memberDataDTO.getGradeIcon())
// .gradeIcon(memberDataDTO.getGradeIcon())
.pkAwardsVal(memberDataDTO.getAwardsVal())
.awardsIcon(memberDataDTO.getAwardsIcon())
// .pkMaxAwardsVal(memberDataDTO.getMaxAwardsVal())

View File

@ -131,10 +131,9 @@ public class CommonServiceProvider implements ICommonServiceApi {
memberDataDTO.setGradeVal(bdGrade.getGradeName());
}
}
BdAwards monthAwards = null;
// 当月奖衔
// 荣誉奖衔
if (null != memberDataDTO.getPkAwards()) {
monthAwards = iBdAwardsService.getBdAwardsOne(memberDataDTO.getPkAwards());
BdAwards monthAwards = iBdAwardsService.getBdAwardsOne(memberDataDTO.getPkAwards());
if (null != monthAwards) {
memberDataDTO.setAwardsVal(monthAwards.getAwardsName());
if (EAwards.MEMBER.getValue() != monthAwards.getAwardsValue()) {