|
@@ -57,6 +57,9 @@ public class AuthorizeInstallServiceImpl extends ServiceImpl<IAuthorizeInstallMa
|
|
|
if(StringUtils.isNotBlank(param.getMachineUuid())){
|
|
|
wrapper.like(AuthorizeInstall::getMachineUuid,param.getMachineUuid());
|
|
|
}
|
|
|
+ if(StringUtils.isNotBlank(param.getMachineCode())){
|
|
|
+ wrapper.like(AuthorizeInstall::getMachineCode,param.getMachineCode());
|
|
|
+ }
|
|
|
wrapper.orderByDesc(AuthorizeInstall::getCreateTime);
|
|
|
Page<AuthorizeInstall> page = this.page(new Page<>(param.getPageNum(), param.getPageSize()), wrapper);
|
|
|
Set<Long> sysIds = page.getRecords().stream().map(AuthorizeInstall::getSysUserId).collect(Collectors.toSet());
|