blob: 46db6833510f573297a550f07190c3d551da40ac [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 org.springframework.data.annotation.Immutable;
import javax.persistence.Entity;
import javax.persistence.Id;
import java.util.UUID;
@Data
@Immutable
@Entity
public class VwDetailedContact {
@Id
private Long fkContactId;
private Long id;
private UUID uuid;
private String name;
private String contactType;
private String companyName;
private String companyType;
private UUID salutationUuid;
private UUID personTypeUuid;
private String firstName;
private String lastName;
private String department;
private String note;
private String salutationType;
private String personType;
private String street;
private String housenumber;
private String community;
private String email;
private String searchfield;
private Boolean anonymized;
}