Commit 133b3f3f authored by Smile's avatar Smile Committed by wux

app会员积分页面显示会员等级

parent 2ed30aa0
......@@ -29,4 +29,6 @@ public class AppMemberUserScoreInfoRespVO {
private Integer upperCount;
@ApiModelProperty(value = "图标")
private String levelIcon;
@ApiModelProperty(value = "会员等级")
private Integer level;
}
......@@ -136,6 +136,7 @@ public class MemberUserScoreServiceImpl extends AbstractService<MemberUserScoreM
infoRespVO.setLowerCount(level.getLowerCount());
infoRespVO.setUpperCount(level.getUpperCount());
infoRespVO.setLevelIcon(level.getIcon());
infoRespVO.setLevel(level.getLevel());
}
return infoRespVO;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment