bug
This commit is contained in:
parent
0a47825124
commit
3b86da3ef5
@ -55,7 +55,7 @@ public class ChainStoreInfoServiceImpl extends ServiceImpl<ChainStoreInfoMapper,
|
||||
}
|
||||
String ancestors = sysDept.getAncestors();
|
||||
if (!"0".equals(sysDept.getAncestors())) {
|
||||
ancestors = sysDept.getAncestors()+sysDept.getDeptId();
|
||||
ancestors = sysDept.getAncestors()+ "," +sysDept.getDeptId();
|
||||
}
|
||||
|
||||
IPage<ChainStoreInfo> res = baseMapper.listVo(page,chainStoreInfo,ancestors);
|
||||
|
@ -224,7 +224,8 @@ public class AccountServiceImpl extends ServiceImpl<TAccountMapper, TAccount> im
|
||||
String roleId = param.get("roleIds").toString();
|
||||
String accountName = param.get("accountName").toString();
|
||||
String accountStatus = param.get("accountStatus").toString();
|
||||
String realName = param.get("realName").toString();
|
||||
String realName = "";
|
||||
if (ObjectUtil.isNotEmpty(param.get("realName"))) realName = param.get("realName").toString();
|
||||
String password = param.get("password").toString();
|
||||
String mobile = param.get("mobile").toString();
|
||||
|
||||
|
@ -229,11 +229,11 @@
|
||||
|
||||
<!-- mvn install:install-file -DgroupId=yly_sdk -DartifactId=yly_sdk -Dversion=2.2 -Dpackaging=jar -Dfile=D:\workspaces\oilSystem\fuintBackend\lib\yly_sdk_2.2.jar-->
|
||||
|
||||
<!--<dependency>
|
||||
<dependency>
|
||||
<groupId>yly_sdk</groupId>
|
||||
<artifactId>yly_sdk</artifactId>
|
||||
<version>2.2</version>
|
||||
</dependency>-->
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user