added support for youth group

This commit is contained in:
Jottyfan
2025-12-14 17:39:19 +01:00
parent 08442dc7ea
commit 3726b9172c
35 changed files with 228 additions and 870 deletions

View File

@@ -1,6 +1,6 @@
package de.jottyfan.bico.modules.sheet;
import static de.jottyfan.bico.db.public_.Tables.V_CALENDAR;
import static de.jottyfan.bico.db.Tables.V_CALENDAR;
import java.util.List;
@@ -11,7 +11,7 @@ import org.jooq.SelectWhereStep;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import de.jottyfan.bico.db.public_.tables.records.VCalendarRecord;
import de.jottyfan.bico.db.tables.records.VCalendarRecord;
/**
*
@@ -27,7 +27,7 @@ public class SheetRepository {
private DSLContext jooq;
public List<VCalendarRecord> getList() {
SelectWhereStep<VCalendarRecord> sql = jooq.selectFrom(V_CALENDAR);
SelectWhereStep<VCalendarRecord> sql = jooq.selectFrom(V_CALENDAR);
LOGGER.trace(sql);
return sql.fetch().stream().toList();
}

View File

@@ -5,7 +5,7 @@ import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import de.jottyfan.bico.db.public_.tables.records.VCalendarRecord;
import de.jottyfan.bico.db.tables.records.VCalendarRecord;
/**
*