blob: bd81f8e7cb4d7b10399dfcde5b715f39c6dc241b [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************
*/
package org.eclipse.openk.contactbasedata.model;
import lombok.Data;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.SequenceGenerator;
import java.util.Date;
import java.util.UUID;
@Data
@Entity
public class TblAssignmentModulContact {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "TBL_ASSIGN_MODUL_CNTCT_ID_SEQ")
@SequenceGenerator(name = "TBL_ASSIGN_MODUL_CNTCT_ID_SEQ", sequenceName = "TBL_ASSIGN_MODUL_CNTCT_ID_SEQ", allocationSize = 1)
@Column(name = "id", updatable = false)
private Long id;
private UUID uuid;
private String modulName;
private Date assignmentDate;
private Date expiringDate;
private Date deletionLockUntil;
private String assignmentNote;
@ManyToOne
@JoinColumn( name = "fk_contact_id")
private TblContact tblContact;
}