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

win.doyto.query.entity.LongId Maven / Gradle / Ivy

// Generated by delombok at Sat Aug 10 11:56:00 CST 2019
package win.doyto.query.entity;

import java.io.Serializable;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;

/**
 * IntegerId
 *
 * @author f0rb
 */
@MappedSuperclass
public abstract class LongId implements Persistable, Serializable {
    @Id
    @GeneratedValue
    protected Long id;

    @java.lang.SuppressWarnings("all")
    @lombok.Generated
    public Long getId() {
        return this.id;
    }

    @java.lang.SuppressWarnings("all")
    @lombok.Generated
    public void setId(final Long id) {
        this.id = id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy