1
0
forked from PGL/Clyde

Suppression de TeacherOwnerCourse.java et ajout d'un booléen Owned dans TeacherGivenCourse.java

This commit is contained in:
LeoMoulin 2024-03-01 01:47:11 +01:00
parent 69c3a3b965
commit 25019d8b91
2 changed files with 1 additions and 16 deletions

View File

@ -12,4 +12,5 @@ public class TeacherGivenCourse {
private int id;
private int RegNo;
private int CourseId;
private boolean Owned;
}

View File

@ -1,16 +0,0 @@
package ovh.herisson.Clyde.Tables;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
@Entity
public class TeacherOwnerCourse {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int id;
private int RegNo;
private int CourseId;
}