Last change
on this file since f7c05a1 was f7c05a1, checked in by Elena Shulevska <elena.shulevska@…>, 15 months ago |
initial commit of the source code on origin
|
-
Property mode
set to
100644
|
File size:
585 bytes
|
Line | |
---|
1 | package com.example.villadihovo.dto;
|
---|
2 |
|
---|
3 | import lombok.AllArgsConstructor;
|
---|
4 | import lombok.Data;
|
---|
5 |
|
---|
6 | import java.io.Serializable;
|
---|
7 | import java.time.LocalDate;
|
---|
8 |
|
---|
9 | @Data
|
---|
10 | @AllArgsConstructor
|
---|
11 | public class ReservationForRoomDto implements Serializable {
|
---|
12 | private int reservation_id;
|
---|
13 | private int room_id;
|
---|
14 | private LocalDate start_date;
|
---|
15 | private LocalDate end_date;
|
---|
16 | private int number_guests;
|
---|
17 | private int adults;
|
---|
18 | private int children;
|
---|
19 | private String room_type;
|
---|
20 | private int price;
|
---|
21 | private String name;
|
---|
22 | private String full_name;
|
---|
23 | private String phone_number;
|
---|
24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.