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

io.mosip.admin.bulkdataupload.entity.id.IdAndEffectDateTimeID Maven / Gradle / Ivy

There is a newer version: 1.2.1.0
Show newest version
package io.mosip.admin.bulkdataupload.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;

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

	private static final long serialVersionUID = 7001663925687776491L;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy