|
|
@@ -18,6 +18,9 @@ public class SalaryEffective extends IdEntity<Long> { |
|
|
|
@Column(name = "date") |
|
|
|
private LocalDate date; |
|
|
|
|
|
|
|
private LocalDate startDate; |
|
|
|
private LocalDate endDate; |
|
|
|
|
|
|
|
public LocalDate getDate() { |
|
|
|
return date; |
|
|
|
} |
|
|
@@ -47,4 +50,20 @@ public class SalaryEffective extends IdEntity<Long> { |
|
|
|
public Staff getStaff() { return staff; } |
|
|
|
|
|
|
|
public void setStaff(Staff staff) { this.staff = staff; } |
|
|
|
|
|
|
|
public LocalDate getStartDate() { |
|
|
|
return startDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStartDate(LocalDate startDate) { |
|
|
|
this.startDate = startDate; |
|
|
|
} |
|
|
|
|
|
|
|
public LocalDate getEndDate() { |
|
|
|
return endDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setEndDate(LocalDate endDate) { |
|
|
|
this.endDate = endDate; |
|
|
|
} |
|
|
|
} |