main
|
Last change
on this file since 700e2f9 was 700e2f9, checked in by 186079 <matej.milevski@…>, 5 days ago |
|
Init
|
-
Property mode
set to
100644
|
|
File size:
605 bytes
|
| Line | |
|---|
| 1 | package com.finki.icare.dto;
|
|---|
| 2 |
|
|---|
| 3 | import lombok.AllArgsConstructor;
|
|---|
| 4 | import lombok.Data;
|
|---|
| 5 | import lombok.NoArgsConstructor;
|
|---|
| 6 |
|
|---|
| 7 | import java.math.BigDecimal;
|
|---|
| 8 | import java.time.LocalDate;
|
|---|
| 9 | import java.util.List;
|
|---|
| 10 |
|
|---|
| 11 | @Data
|
|---|
| 12 | @NoArgsConstructor
|
|---|
| 13 | @AllArgsConstructor
|
|---|
| 14 | public class ConsultationDTO {
|
|---|
| 15 | private Integer idConsultation;
|
|---|
| 16 | private Integer patientId;
|
|---|
| 17 | private String patientName;
|
|---|
| 18 | private Integer therapistId;
|
|---|
| 19 | private String therapistName;
|
|---|
| 20 | private LocalDate date;
|
|---|
| 21 | private LocalDate dateOfPayment;
|
|---|
| 22 | private BigDecimal price;
|
|---|
| 23 | private String advice;
|
|---|
| 24 | private List<TherapyDTO> therapies;
|
|---|
| 25 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.