package io.delphiplatform.api.v3.rdb.entity;

import javax.persistence.Entity;
import javax.persistence.Id;

import lombok.Getter;
import lombok.Setter;

@Entity(name = "country")
@Getter
@Setter
public class CountryEntity {

    @Id
    private String countryKey;
    private String countryName;
    private String isrcCountryCode;
    private String iso3166A3CountryCode;
    private String iso3166NCountryCode;
    private boolean isMainIsoA2Country;
    private Boolean isActiveFlag;
    private String subArea;
    private String superArea;
    private String topArea;

}
