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

io.mosip.kernel.masterdata.entity.id.RegistrationCenterUserID 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 javax.persistence.Column;
import javax.persistence.Embeddable;

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

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

	/**
	 * Generated SerialVersionUID
	 */
	private static final long serialVersionUID = -403460847776525788L;

	@Column(name = "regcntr_id", unique = true, nullable = false, length = 10)
	private String regCenterId;

	@Column(name = "usr_id", unique = true, nullable = false, length = 10)
	private String userId;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy