add
This commit is contained in:
52
backend/src/main/java/com/nursinghome/entity/Handover.java
Normal file
52
backend/src/main/java/com/nursinghome/entity/Handover.java
Normal file
@@ -0,0 +1,52 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user