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

@Getter
@Setter
@Entity
@Table(name = USER_LABELS, schema = DECIBEL_SCHEMA)
public class DecibelUserLabelEntity {

    @EmbeddedId
    private DecibelUserLabelId userLabelId;


}
