1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| @Entity
@Table(name = "UtiNote")
public class UtiNote implements Serializable {
@ManyToOne
@JoinColumn(name = "REFUTILISATEURFK", referencedColumnName = "IDPK", insertable = false, updatable = false, nullable = false)
private RefUtilisateur refUtilisateur;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int idPk;
private int refUtilisateurFk;
private String type; // Type de note : P = Page ou T = Tableau
private String page;
private String tableau;
private int ligne;
private int colonne;
private int positionX;
private int positionY;
private String couleur;
private String texte; |