- Timestamp:
- 02/13/25 10:05:35 (4 months ago)
- Branches:
- master
- Children:
- a70b5a4
- Parents:
- 57e58a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/skychasemk/model/Destination.java
r57e58a3 r3d60932 6 6 7 7 @Entity 8 @Table(name=" Destination")8 @Table(name="destination") 9 9 public class Destination { 10 10 11 11 @Id 12 12 @GeneratedValue(strategy = GenerationType.IDENTITY) 13 @Column(name = " DestinationID")13 @Column(name = "destinationid") 14 14 15 15 private Integer destinationID; 16 @Column(name = " Name")16 @Column(name = "name") 17 17 18 18 private String name; 19 @Column(name = " Country")19 @Column(name = "country") 20 20 21 21 private String country; 22 @Column(name = " Description")22 @Column(name = "description") 23 23 24 24 private String description;
Note:
See TracChangeset
for help on using the changeset viewer.