source: src/main/java/it/finki/tinki/model/Address.java@ e6ff724

Last change on this file since e6ff724 was e6ff724, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 440 bytes
Line 
1package it.finki.tinki.model;
2
3import lombok.Data;
4
5import javax.persistence.*;
6
7@Entity
8@Data
9public class Address {
10
11 @Id
12 @GeneratedValue(strategy = GenerationType.IDENTITY)
13 Long id;
14
15 String country;
16 String city;
17 String street;
18
19 public Address() {}
20
21 public Address(String country, String city, String street) {
22 this.country = country;
23 this.city = city;
24 this.street = street;
25 }
26}
Note: See TracBrowser for help on using the repository browser.