|
@@ -235,7 +235,7 @@ public class AuthOrgInfoService implements IAuthOrgInfoService {
|
|
|
|
|
|
@Override
|
|
|
public List<AuthOrgInfo> getByCodeLike(String orgCodeLike) {
|
|
|
- Specification<AuthOrgInfo> specification = (root, query, cb) -> cb.like(root.get("code"), "%" + orgCodeLike + "%");
|
|
|
+ Specification<AuthOrgInfo> specification = (root, query, cb) -> cb.like(root.get("code"),orgCodeLike + "%");
|
|
|
return orgInfoRepository.findAll(specification);
|
|
|
}
|
|
|
}
|