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_OBJECTIVE;
import static io.delphiplatform.api.v3.constant.DecibelTableNames.DECIBEL_SCHEMA;

@Getter
@Setter
@Entity
@Table(name = CAMPAIGN_OBJECTIVE, schema = DECIBEL_SCHEMA)
public class DecibelCampaignObjectiveEntity {

    @Id
    private Integer id;
    private String name;

}
