com.github.quarkus.postgres.DummyEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-postgres-sample Show documentation
Show all versions of quarkus-postgres-sample Show documentation
This sample project was created by Alexei Bratuhin(@coiouhkc github user) as a reproducer for issue #253
package com.github.quarkus.postgres;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@NoArgsConstructor
@AllArgsConstructor
@Data
@Table(name = "DUMMY")
@Entity
public class DummyEntity {
@Id
@Column(name = "ID")
private int id;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy