source: src/main/java/com/example/villadihovo/model/offers/Villa.java@ f7c05a1

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: 512 bytes
Line 
1package com.example.villadihovo.model.offers;
2
3import jakarta.persistence.*;
4import lombok.AllArgsConstructor;
5import lombok.Data;
6import lombok.NoArgsConstructor;
7
8@Data
9@AllArgsConstructor
10@NoArgsConstructor
11@Entity
12@Table(name="villa")
13public class Villa {
14
15 @Id
16 @GeneratedValue(strategy = GenerationType.IDENTITY)
17 private int villa_id;
18
19 @Column(nullable = false)
20 private String villa_location;
21
22 @Column(nullable = false)
23 private String name;
24
25 private String villa_view_type;
26}
Note: See TracBrowser for help on using the repository browser.