![JAR search and dependency download from the Maven repository](/logo.png)
com.evasion.entity.geolocation.Locality Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of API Show documentation
Show all versions of API Show documentation
API de l'application modulaire evasion-en-ligne
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.entity.geolocation;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.ManyToOne;
import javax.persistence.OneToOne;
/**
*
* @author sebastien.glon
*/
@Entity
public class Locality implements Serializable{
/***
* serialVersionUID.
*/
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue
private Long id;
private String name;
@ManyToOne
private PostalCode postalCode;
@OneToOne
private AdministrativeArea AdministrativeArea;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy