source: src/main/java/com/example/villadihovo/model/offers/Meal.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: 467 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="meal")
13public class Meal {
14
15 @Id
16 @GeneratedValue(strategy = GenerationType.IDENTITY)
17 private int meal_id;
18
19 @Column(nullable = false)
20 private float price;
21
22 @Column(nullable = false)
23 private String meal_type;
24}
Note: See TracBrowser for help on using the repository browser.