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

import org.springframework.beans.factory.annotation.Value;

import java.time.LocalDate;
import java.time.LocalDateTime;

public interface CommonDataHealthStatusSummaryProjection {

    String getDsp();

    @Value("#{target.min_date}")
    LocalDate getMinDate();

    @Value("#{target.max_date}")
    LocalDate getMaxDate();

    @Value("#{target.valid_until}")
    LocalDate getValidUntil();
}
