Tests à un bon niveau - A completer plus tard.

This commit is contained in:
DahoudG
2025-09-11 11:53:54 +00:00
parent b8c7949f41
commit 8184bc77bb
22 changed files with 2964 additions and 238 deletions

View File

@@ -20,13 +20,14 @@ import java.time.LocalDateTime;
@Entity
@Table(name = "membres", indexes = {
@Index(name = "idx_membre_email", columnList = "email", unique = true),
@Index(name = "idx_membre_numero", columnList = "numeroMembre", unique = true),
@Index(name = "idx_membre_numero", columnList = "numero_membre", unique = true),
@Index(name = "idx_membre_actif", columnList = "actif")
})
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
@EqualsAndHashCode(callSuper = false)
public class Membre extends PanacheEntity {
@NotBlank