plus de class

This commit is contained in:
trochas
2025-09-17 12:55:38 +02:00
parent 8200165fc5
commit c0432a2c95
7 changed files with 31 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,5 @@
package jpa.metier;
public class Classement {
}

View File

@@ -0,0 +1,5 @@
package jpa.metier;
public class Quizz {
}

View File

@@ -0,0 +1,21 @@
package jpa.metier;
import jakarta.persistence.Entity;
@Entity
public class Session {
protected int codePIN;
public Session(){
}
public void setCodePIN(int codePIN){
this.codePIN = codePIN;
}
public int getCodePIN(){
return this.codePIN;
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.