com.alon.spring.crud.model.BaseEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-crud-base Show documentation
Show all versions of spring-crud-base Show documentation
Projeto base para criação de serviços e recusos de CRUD com Spring Data JPA.
package com.alon.spring.crud.model;
import java.io.Serializable;
public interface BaseEntity extends Serializable {
public Long getId();
public void setId(Long id);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy