Last change
on this file was 743de55, checked in by macagaso <gasoskamarija@…>, 6 weeks ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
654 bytes
|
Line | |
---|
1 | package finki.it.terapijamkbackend.spring.dto;
|
---|
2 |
|
---|
3 | import finki.it.terapijamkbackend.spring.entities.AppointmentInfoStatus;
|
---|
4 | import jakarta.persistence.Embeddable;
|
---|
5 | import lombok.Getter;
|
---|
6 | import lombok.Setter;
|
---|
7 | import java.time.LocalDateTime;
|
---|
8 |
|
---|
9 | @Getter
|
---|
10 | @Setter
|
---|
11 | @Embeddable
|
---|
12 | public class AppointmentInfo {
|
---|
13 | private LocalDateTime dateTime;
|
---|
14 | private String note;
|
---|
15 | private AppointmentInfoStatus status;
|
---|
16 |
|
---|
17 | public AppointmentInfo() {
|
---|
18 | }
|
---|
19 |
|
---|
20 | public AppointmentInfo(LocalDateTime dateTime, String note,AppointmentInfoStatus appointmentInfoStatus) {
|
---|
21 | this.dateTime = dateTime;
|
---|
22 | this.note = note;
|
---|
23 | status=appointmentInfoStatus;
|
---|
24 | }
|
---|
25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.