Files
backend/lib/src/main/java/com/drinkool/entities/BaseEntity.java
T
TakahashiNguyen cda46248df
Release package / release (push) Has been cancelled
Java CI with Maven / build-and-test (push) Has been cancelled
feat(eatery-service): init with tests (#3)
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
2026-03-25 02:08:19 +00:00

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;
}