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:
vran
2022-03-05 12:24:00 +08:00
committed by GitHub
parent e91f78541e
commit 842643ea4f
21 changed files with 147 additions and 30 deletions

View File

@@ -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);
}
}