Merge remote-tracking branch 'z-eactive/feature/modern-dashboard' into devs/dashboard
This commit is contained in:
@@ -233,4 +233,16 @@ public class AdapterGroupService extends AbstractDataService<AdapterGroup, Strin
|
||||
|
||||
return query.fetch();
|
||||
}
|
||||
|
||||
public List<AdapterGroup> findByAdptrinsticodeNotEmpty() {
|
||||
QAdapterGroup qAdapterGroup = QAdapterGroup.adapterGroup;
|
||||
|
||||
JPAQuery<AdapterGroup> query = getJPAQueryFactory()
|
||||
.selectFrom(qAdapterGroup)
|
||||
.where(qAdapterGroup.adptrinsticode.isNotNull()
|
||||
.and(qAdapterGroup.adptrinsticode.ne("")))
|
||||
.orderBy(qAdapterGroup.adptrbzwkgroupname.asc());
|
||||
|
||||
return query.fetch();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user