package io.delphiplatform.api.v3.rdb.entity;

import javax.persistence.EmbeddedId;
import javax.persistence.Entity;

import lombok.Getter;
import lombok.Setter;

@Entity(name = "participant")
@Getter
@Setter
public class ParticipantEntity extends TrackedEntity {

    @EmbeddedId
    private ParticipantId participantId;
    private String participantName;
    private String membershipType;
    private Integer seqNo;

}
