namespace FoodLabeling.Application.Contracts.Dtos.Dashboard;
///
/// 仪表盘指标卡片
///
public class DashboardMetricCardDto
{
/// 指标唯一标识(如 labelsPrintedToday)
public string Key { get; set; } = string.Empty;
/// 指标标题
public string Title { get; set; } = string.Empty;
/// 当前值
public int Value { get; set; }
/// 对比周期值
public int PreviousValue { get; set; }
/// 增减值(Value - PreviousValue)
public int ChangeValue { get; set; }
/// 增减比例(百分比)
public decimal ChangeRate { get; set; }
}