déplacement des class

This commit is contained in:
trochas
2025-09-17 13:41:36 +02:00
parent cfba6b50e3
commit b3ffb549c8
24 changed files with 72 additions and 29 deletions

View File

@@ -0,0 +1,29 @@
package jpa.metier;
import jakarta.persistence.Id;
public abstract class Reponse {
@Id
int id;
String value;
Boolean correct;
public Reponse(){
}
public void setValue(String value){
this.value = value;
}
public String getValue(){
return this.value;
}
public boolean isCorrect(){
return this.correct;
}
public void setCorrect(Boolean correct){
this.correct = correct;
}
}