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

org.tkit.quarkus.jpa.test.Address Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy