source: src/main/java/com/example/kvizko/models/Hint.java@ c3268ca

main
Last change on this file since c3268ca was c3268ca, checked in by Stefan Risteski <stefanristeski2001@…>, 9 months ago

Project

The whole Project

  • Property mode set to 100644
File size: 310 bytes
Line 
1package com.example.kvizko.models;
2
3import jakarta.persistence.*;
4import lombok.Data;
5
6@Entity
7@Data
8@Table(name="hint")
9public class Hint {
10
11 @Id
12 private long hintid;
13 private String hinttext;
14
15 @OneToOne
16 @JoinColumn(name="questionid")
17 private Question question;
18 /*private long questionid;*/
19
20
21
22
23}
Note: See TracBrowser for help on using the repository browser.