com.github.uniliva.commonsutils.dto.BaseDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib-commons-utils Show documentation
Show all versions of lib-commons-utils Show documentation
Biblioteca de métodos utilitários
The newest version!
package com.github.uniliva.commonsutils.dto;
import java.io.Serializable;
import lombok.NoArgsConstructor;
@NoArgsConstructor
public class BaseDTO implements Serializable {
private static final long serialVersionUID = 1L;
}