Skip to content
Snippets Groups Projects
Commit 285dd37e authored by THEWORLD210202's avatar THEWORLD210202
Browse files

Correction erreur GommetteAttribEntity

parent a13c1695
Branches
No related tags found
No related merge requests found
No preview for this file type
import java.sql.Timestamp; import java.sql.Timestamp;
public class GommetteAttribEntity { public class GommetteAttribEntity {
private int id; private int id;
private int idEleve; private int idEleve;
...@@ -10,32 +9,52 @@ public class GommetteAttribEntity { ...@@ -10,32 +9,52 @@ public class GommetteAttribEntity {
private Date dateAttribution; private Date dateAttribution;
private String raisonAttribution; private String raisonAttribution;
public int getId() {
return id;
}
public int getId(){return id;} public void seId(int nId) {
public void seId(int nId){id = nId;} id = nId;
}
public int getIdEleve(){return idEleve;} public int getIdEleve() {
public void setIdEleve(int nIdEleve){idEleve = nIdEleve;} return idEleve;
}
public int getIdProf(){return idProf;} public void setIdEleve(int nIdEleve) {
public void setIdProf(int nIdProf){idProf = nIdProf;} idEleve = nIdEleve;
}
public int getIdProf() {
return idProf;
}
public int getIdGommette(){return idGommette;} public void setIdProf(int nIdProf) {
public void setIdGommette(int nIdGommette){idGommette = nIdGommette;} idProf = nIdProf;
}
public int getIdGommette() {
return idGommette;
}
public int getIdGommette(){return idGommette;} public void setIdGommette(int nIdGommette) {
public void setIdGommette(int nIdGommette){idGommette = nIdGommette;} idGommette = nIdGommette;
}
public Date getDateAttribution(){return dateAttribution;} public Date getDateAttribution() {
public void setDateAttribution(Date nDateAttribution){dateAttribution = nDateAttribution;} return dateAttribution;
}
public void setDateAttribution(Date nDateAttribution) {
dateAttribution = nDateAttribution;
}
public String getRaisonAttribution(){return raisonAttribution;} public String getRaisonAttribution() {
public void setRaisonAttribution(String nRaisonAttribution){raisonAttribution = nRaisonAttribution;} return raisonAttribution;
}
public void setRaisonAttribution(String nRaisonAttribution) {
raisonAttribution = nRaisonAttribution;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment