blob: cdc266dfb81eb4e9bd997403c8cdca06ea3ef514 [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.*;
@Data
@Entity
public class TblContactPerson {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "tbl_contact_person_id_seq")
@SequenceGenerator(name = "tbl_contact_person_id_seq", sequenceName = "tbl_contact_person_id_seq", allocationSize = 1)
@Column(name = "id", updatable = false)
private Long id;
private String firstName;
private String lastName;
private String title;
@OneToOne
private TblContact contact;
@ManyToOne
private TblCompany tblCompany;
@ManyToOne
private RefPersonType refPersonType;
@ManyToOne
private RefSalutation refSalutation;
}