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

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

import lombok.Getter;
import lombok.Setter;

import static io.delphiplatform.api.v3.constant.DecibelTableNames.CAMPAIGN_PLATFORMS;
import static io.delphiplatform.api.v3.constant.DecibelTableNames.DECIBEL_SCHEMA;

@Getter
@Setter
@Entity
@Table(name = CAMPAIGN_PLATFORMS, schema = DECIBEL_SCHEMA)
public class DecibelCampaignPlatformEntity {

    @EmbeddedId
    private DecibelCampaignPlatformId campaignPlatformId;


}
