53 lines
976 B
Java
53 lines
976 B
Java
package com.nursinghome.entity;
|
|
|
|
import java.time.LocalDate;
|
|
import java.time.LocalDateTime;
|
|
|
|
public class Handover {
|
|
private Long id;
|
|
private Long nurseId;
|
|
private LocalDate date;
|
|
private String content;
|
|
private LocalDateTime createdAt;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getNurseId() {
|
|
return nurseId;
|
|
}
|
|
|
|
public void setNurseId(Long nurseId) {
|
|
this.nurseId = nurseId;
|
|
}
|
|
|
|
public LocalDate getDate() {
|
|
return date;
|
|
}
|
|
|
|
public void setDate(LocalDate date) {
|
|
this.date = date;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public LocalDateTime getCreatedAt() {
|
|
return createdAt;
|
|
}
|
|
|
|
public void setCreatedAt(LocalDateTime createdAt) {
|
|
this.createdAt = createdAt;
|
|
}
|
|
}
|