fix(service): 修改代理公司特殊代码为"D"
- 将特殊代码由"A"更改为"D" - 修复区域信息校验逻辑中的特殊代码定义 - 保证代理公司区域信息校验的正确性
This commit is contained in:
parent
dfa793fcff
commit
50901bf40e
|
|
@ -106,7 +106,7 @@ public class AppUserServiceImpl extends ServiceImpl<AppUserMapper, AppUser> impl
|
|||
.filter(StrUtil::isNotBlank)
|
||||
.collect(Collectors.toSet());
|
||||
VUtils.trueThrowBusinessError(CollectionUtil.isEmpty(uniqueAreaCodes)).throwMessage("存在未维护区域信息的代理公司,请先维护区域信息");
|
||||
String specialCode = "A";
|
||||
String specialCode = "D";
|
||||
List<TBaseArea> areas = adminAreaService.lambdaQuery()
|
||||
.in(TBaseArea::getAreaCode, uniqueAreaCodes)
|
||||
.list();
|
||||
|
|
|
|||
Loading…
Reference in New Issue