Merge remote-tracking branch 'z-eactive/feature/modern-dashboard' into devs/dashboard

This commit is contained in:
Rinjae
2025-11-17 14:52:32 +09:00
72 changed files with 49662 additions and 547 deletions
@@ -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();
}
}