main
Last change
on this file was f4b4afa, checked in by Nikola Todoroski <nikola.todoroski@…>, 6 months ago |
Pushed whole project, original project location on github:https://github.com/hehxd/Tech-Harbor
|
-
Property mode
set to
100644
|
File size:
480 bytes
|
Line | |
---|
1 | package tech.techharbor.Model.EmbeddedClasses;
|
---|
2 |
|
---|
3 | import jakarta.persistence.Column;
|
---|
4 | import jakarta.persistence.Embeddable;
|
---|
5 | import lombok.Data;
|
---|
6 |
|
---|
7 | import java.io.Serializable;
|
---|
8 |
|
---|
9 | @Data
|
---|
10 | @Embeddable
|
---|
11 | public class VehicleIsUsedForDeliverClass implements Serializable {
|
---|
12 | @Column(name = "vehicle_id", nullable = false)
|
---|
13 | private Integer vehicleId;
|
---|
14 |
|
---|
15 | @Column(name = "delivery_id", nullable = false)
|
---|
16 | private Integer deliveryId;
|
---|
17 |
|
---|
18 | public VehicleIsUsedForDeliverClass() {
|
---|
19 | }
|
---|
20 | }
|
---|
21 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.