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

io.mosip.authentication.common.service.entity.AnonymousProfileEntity Maven / Gradle / Ivy

package io.mosip.authentication.common.service.entity;

import java.time.LocalDateTime;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.NotNull;

import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 
 * @author Loganathan Sekar
 *
 */
@NoArgsConstructor
@Data
@Table(name = "anonymous_profile", schema = "ida")
@Entity
public class AnonymousProfileEntity {
	
	@Id
	@NotNull
	private String id;
	
	@NotNull
	private String profile;

	@NotNull
	@Column(name = "cr_by")
	private String crBy;

	@NotNull
	@Column(name = "cr_dtimes")
	private LocalDateTime crDTimes;

	@Column(name = "upd_by")
	private String updBy;

	@Column(name = "upd_dtimes")
	private LocalDateTime updDTimes;

	@Column(name = "is_deleted")
	private boolean isDeleted;
	
	@Column(name = "del_dtimes")
	private LocalDateTime delDTimes;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy