source: backend/src/main/java/com/finki/icare/dto/ConsultationDTO.java

main
Last change on this file was 700e2f9, checked in by 186079 <matej.milevski@…>, 5 days ago

Init

  • Property mode set to 100644
File size: 605 bytes
RevLine 
[700e2f9]1package com.finki.icare.dto;
2
3import lombok.AllArgsConstructor;
4import lombok.Data;
5import lombok.NoArgsConstructor;
6
7import java.math.BigDecimal;
8import java.time.LocalDate;
9import java.util.List;
10
11@Data
12@NoArgsConstructor
13@AllArgsConstructor
14public 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.