cda46248df
Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com> Co-authored-by: gitea-actions <actions-user@noreply.git.demonkernel.io.vn> Co-authored-by: TranHuuDanh <tranhuudanh@demonkernel.io.vn> Reviewed-on: #3
14 lines
289 B
Java
14 lines
289 B
Java
package com.drinkool.entities;
|
|
|
|
import io.quarkus.hibernate.orm.panache.PanacheEntityBase;
|
|
import jakarta.persistence.*;
|
|
import java.util.UUID;
|
|
|
|
@MappedSuperclass
|
|
public class BaseEntity extends PanacheEntityBase {
|
|
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.UUID)
|
|
public UUID id;
|
|
}
|