110 lines
2.4 KiB
Java
110 lines
2.4 KiB
Java
package com.magistr.app.model;
|
|
|
|
import jakarta.persistence.*;
|
|
|
|
import java.time.LocalDate;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Entity
|
|
@Table(name = "teacher_department_assignments")
|
|
public class TeacherDepartmentAssignment {
|
|
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
private Long id;
|
|
|
|
@ManyToOne(optional = false)
|
|
@JoinColumn(name = "teacher_id", nullable = false)
|
|
private User teacher;
|
|
|
|
@ManyToOne(optional = false)
|
|
@JoinColumn(name = "department_id", nullable = false)
|
|
private Department department;
|
|
|
|
@Column(name = "valid_from", nullable = false)
|
|
private LocalDate validFrom;
|
|
|
|
@Column(name = "valid_to")
|
|
private LocalDate validTo;
|
|
|
|
@Column(name = "is_primary", nullable = false)
|
|
private Boolean primaryAssignment = true;
|
|
|
|
@Column(columnDefinition = "TEXT")
|
|
private String comment;
|
|
|
|
@Column(name = "created_at", nullable = false)
|
|
private LocalDateTime createdAt = LocalDateTime.now();
|
|
|
|
@Column(name = "created_by")
|
|
private Long createdBy;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public User getTeacher() {
|
|
return teacher;
|
|
}
|
|
|
|
public void setTeacher(User teacher) {
|
|
this.teacher = teacher;
|
|
}
|
|
|
|
public Department getDepartment() {
|
|
return department;
|
|
}
|
|
|
|
public void setDepartment(Department department) {
|
|
this.department = department;
|
|
}
|
|
|
|
public LocalDate getValidFrom() {
|
|
return validFrom;
|
|
}
|
|
|
|
public void setValidFrom(LocalDate validFrom) {
|
|
this.validFrom = validFrom;
|
|
}
|
|
|
|
public LocalDate getValidTo() {
|
|
return validTo;
|
|
}
|
|
|
|
public void setValidTo(LocalDate validTo) {
|
|
this.validTo = validTo;
|
|
}
|
|
|
|
public Boolean getPrimaryAssignment() {
|
|
return primaryAssignment;
|
|
}
|
|
|
|
public void setPrimaryAssignment(Boolean primaryAssignment) {
|
|
this.primaryAssignment = primaryAssignment;
|
|
}
|
|
|
|
public String getComment() {
|
|
return comment;
|
|
}
|
|
|
|
public void setComment(String comment) {
|
|
this.comment = comment;
|
|
}
|
|
|
|
public LocalDateTime getCreatedAt() {
|
|
return createdAt;
|
|
}
|
|
|
|
public void setCreatedAt(LocalDateTime createdAt) {
|
|
this.createdAt = createdAt;
|
|
}
|
|
|
|
public Long getCreatedBy() {
|
|
return createdBy;
|
|
}
|
|
|
|
public void setCreatedBy(Long createdBy) {
|
|
this.createdBy = createdBy;
|
|
}
|
|
}
|