org.tkit.quarkus.jpa.test.Address Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tkit-quarkus-jpa-tests Show documentation
Show all versions of tkit-quarkus-jpa-tests Show documentation
Module that contains tkit-quarkus-jpa related tests
The newest version!
package org.tkit.quarkus.jpa.test;
import jakarta.persistence.Entity;
import jakarta.persistence.Table;
import org.tkit.quarkus.jpa.models.TraceableEntity;
@Entity
@Table(name = "ADDRESS")
public class Address extends TraceableEntity {
private String city;
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
}