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

io.mosip.kernel.masterdata.entity.id.RegistrationCenterHistoryID Maven / Gradle / Ivy

There is a newer version: 1.2.1.0
Show newest version
package io.mosip.kernel.masterdata.entity.id;

import java.io.Serializable;
import java.time.LocalDateTime;

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

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 
 * @author Dharmesh Khandelwal
 * @since 1.0.0
 *
 */

@Data
@NoArgsConstructor
@AllArgsConstructor
@Embeddable
public class RegistrationCenterHistoryID implements Serializable {

	private static final long serialVersionUID = -8541947587557590379L;

	@Column(name = "id", nullable = false, length = 36)
	private String id;

	@Column(name = "eff_dtimes", nullable = false)
	private LocalDateTime effectivetimes;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy