![JAR search and dependency download from the Maven repository](/logo.png)
com.evasion.entity.postal.PostalCode Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.entity.postal;
import com.evasion.EntityJPA;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
/**
*
* @author sebastien.glon
*/
@Entity
public class PostalCode extends EntityJPA {
/**
* *
* serialVersionUID.
*/
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue
private Long id;
private String code;
@Override
public Long getId() {
return this.id;
}
@Override
public void setId(Long id) {
this.id = id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy