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

io.mosip.registration.entity.id.LocationHierarchyId Maven / Gradle / Ivy

package io.mosip.registration.entity.id;

import lombok.Data;

import javax.persistence.Column;
import javax.persistence.Embeddable;
import java.io.Serializable;

@Embeddable
@Data
public class LocationHierarchyId implements Serializable {

    @Column(name = "hierarchy_level", nullable = false, length = 36)
    private int hierarchyLevel;

    @Column(name = "hierarchy_level_name", nullable = false, length = 64)
    private String hierarchyLevelName;

    @Column(name = "lang_code", nullable = false, length = 3)
    private String langCode;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy