com.alon.spring.crud.domain.model.NestedBaseEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crud-api-base Show documentation
Show all versions of crud-api-base Show documentation
Fornece implementação básica e expansível para criação API's CRUD com Spring Boot e Spring Data JPA.
package com.alon.spring.crud.domain.model;
import java.io.Serializable;
public abstract class NestedBaseEntity extends BaseEntity {
public abstract MASTER_ENTITY_TYPE getMasterEntity();
public abstract void setMasterEntity(MASTER_ENTITY_TYPE masterEntity);
}