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

import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

import lombok.Getter;
import lombok.Setter;

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

@Getter
@Setter
@Entity
@Table(name = CAMPAIGN_PROVIDER, schema = DECIBEL_SCHEMA)
public class DecibelCampaignProviderEntity {

    @Id
    private Integer id;
    private String name;

}
