LeoMoulin/Backend/Leo #55

Merged
tonitch merged 11 commits from LeoMoulin/Backend/Leo into master 2024-03-05 23:42:00 +01:00
2 changed files with 1 additions and 16 deletions
Showing only changes of commit 25019d8b91 - Show all commits

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;
}