3
0
Fork 0

## 空单注册返回等级处理(257);

This commit is contained in:
cabbage 2025-07-12 09:38:03 +08:00
parent 7819281f53
commit 8ba98c5118
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ public class BdMenuController extends BaseController {
if (CollectionUtil.isNotEmpty(list)) {
// 等级列表
List<BdGrade> gradeTmpList = iBdGradeService.queryGradeConfigByCondition(pkCountry);
List<BdGrade> gradeTmpList = iBdGradeService.selectGradeAll(pkCountry);
Map<Integer, BdGrade> gradeMap = new HashMap<>(gradeTmpList.size());
for (BdGrade bdGrade : gradeTmpList) {
gradeMap.put(bdGrade.getPkId(), bdGrade);

View File

@ -1704,7 +1704,7 @@ public class EnumsController extends BaseController {
pkCountry = SecurityUtils.getPkCountry();
}
// 查询国家等级列表
List<BdGrade> gradeList = iBdGradeService.queryGradeConfigByCondition(pkCountry);
List<BdGrade> gradeList = iBdGradeService.selectGradeAll(pkCountry);
gradeList.sort(Comparator.comparing(BdGrade::getGradeValue));
List<EnumEntity> enumEntityList = new ArrayList<>();