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

com.github.quarkus.postgres.DummyEntity Maven / Gradle / Ivy

Go to download

This sample project was created by Alexei Bratuhin(@coiouhkc github user) as a reproducer for issue #253

There is a newer version: 1.37.1
Show newest version
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