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

io.mosip.pms.common.entity.Misp Maven / Gradle / Ivy

There is a newer version: 1.3.0-dp.1
Show newest version

package io.mosip.pms.common.entity;

import java.time.LocalDateTime;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

import lombok.Data;

/**
 * Entity class for MISPID generator.
 *
 * @author Nagarjuna k
 */

@Entity
@Table(name = "tspid_seq")
@Data
public class Misp {

	/**
	 * The MISPID generated.
	 */
	@Id
	@Column(name = "curr_seq_no", nullable = false)
	private int mispId;

	/**
	 * The ID created by.
	 */
	@Column(name = "cr_by", nullable = false, length = 256)
	private String createdBy;

	/**
	 * The ID created at.
	 */
	@Column(name = "cr_dtimes", nullable = false)
	private LocalDateTime createdDateTime;

	/**
	 * The ID updated by.
	 */
	@Column(name = "upd_by", length = 256)
	private String updatedBy;

	/**
	 * The ID updated at.
	 */
	@Column(name = "upd_dtimes")
	private LocalDateTime updatedDateTime;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy