de.svenkubiak.mangooio.models.BaseModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mangooio-hibernate-extension Show documentation
Show all versions of mangooio-hibernate-extension Show documentation
Convenient class for the mangoo I/O framework to work with Hibernate
The newest version!
package de.svenkubiak.mangooio.models;
import jakarta.persistence.Column;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import jakarta.persistence.MappedSuperclass;
/**
*
* @author svenkubiak
*
*/
@MappedSuperclass
public class BaseModel {
@Id
@GeneratedValue
@Column(name = "id")
private int id;
public int getId() {
return id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy