wip: cm admin comb selector

This commit is contained in:
2025-11-26 12:36:57 +01:00
parent 160c7d59e3
commit f6d4bb0fe4
12 changed files with 932 additions and 136 deletions

View File

@@ -16,7 +16,7 @@ import lombok.Setter;
@RegisterForReflection
@Entity
@Table(name = "cardboard")
@Table(name = "competition_guest")
public class CompetitionGuestModel {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@@ -37,6 +37,8 @@ public class CompetitionGuestModel {
String country = "fr";
Integer weight = null;
public CompetitionGuestModel(String s) {
this.fname = s.substring(0, s.indexOf(" "));
this.lname = s.substring(s.indexOf(" ") + 1);