mirror of
https://github.com/vran-dev/databasir.git
synced 2025-08-09 12:38:20 +08:00
add more detail info in system log response (#33)
* feat: add more detail info in log * feat: update frontend resources
This commit is contained in:
@@ -56,4 +56,17 @@ public class GroupDao extends BaseDao<GroupPojo> {
|
||||
.where(GROUP.ID.in(ids)).and(GROUP.DELETED.eq(false))
|
||||
.fetchInto(GroupPojo.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* with deleted
|
||||
*/
|
||||
public List<GroupPojo> selectAllInIds(List<? extends Serializable> ids) {
|
||||
if (ids == null || ids.isEmpty()) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
return getDslContext()
|
||||
.select(GROUP.fields()).from(GROUP)
|
||||
.where(GROUP.ID.in(ids))
|
||||
.fetchInto(GroupPojo.class);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user