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

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

package io.mosip.registration.entity.id;

import java.io.Serializable;

import javax.persistence.Column;
import javax.persistence.Embeddable;

import io.mosip.registration.entity.ScreenDetail;
import lombok.Data;

/**
 * Composite key for {@link ScreenDetail}
 * 
 * @author Sravya Surampalli
 * @since 1.0.0
 */
@Embeddable
@Data
public class ScreenDetailId implements Serializable{
	
	/**
	 * 
	 */
	private static final long serialVersionUID = -1205506473293466764L;
	@Column(name = "id")
	private String id;
	@Column(name = "lang_code")
	private String langCode;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy