|
@@ -20,11 +20,6 @@ public class GradeLog extends BaseEntity<Long> { |
|
|
@JoinColumn(name = "gradeId") |
|
|
@JoinColumn(name = "gradeId") |
|
|
private Grade grade; |
|
|
private Grade grade; |
|
|
|
|
|
|
|
|
@NotNull |
|
|
|
|
|
@OneToOne |
|
|
|
|
|
@JoinColumn(name = "positionId") |
|
|
|
|
|
private Position position; |
|
|
|
|
|
|
|
|
|
|
|
@NotNull |
|
|
@NotNull |
|
|
@Column(name = "from", length = 30) |
|
|
@Column(name = "from", length = 30) |
|
|
private LocalDate from; |
|
|
private LocalDate from; |
|
@@ -45,10 +40,6 @@ public class GradeLog extends BaseEntity<Long> { |
|
|
|
|
|
|
|
|
public void setGrade(Grade grade) { this.grade = grade; } |
|
|
public void setGrade(Grade grade) { this.grade = grade; } |
|
|
|
|
|
|
|
|
public Position getPosition() { return position; } |
|
|
|
|
|
|
|
|
|
|
|
public void setPosition(Position position) { this.position = position; } |
|
|
|
|
|
|
|
|
|
|
|
public LocalDate getFrom() { return from; } |
|
|
public LocalDate getFrom() { return from; } |
|
|
|
|
|
|
|
|
public void setFrom(LocalDate from) { this.from = from; } |
|
|
public void setFrom(LocalDate from) { this.from = from; } |
|
|