All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.base4j.mvc.base.entity.BaseEntity Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.base4j.mvc.base.entity;

import javax.persistence.Id;
import java.io.Serializable;
import java.util.Date;

public class BaseEntity implements Serializable {

    @Id
    private Long id;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    @Override
    public String toString() {
        return "id=" + id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy