feat: 首页仪表面板 (#103)

[skip ci]
This commit is contained in:
2024-04-25 18:26:57 +08:00
committed by GitHub
parent 8f69c2907b
commit 149e1afa53
58 changed files with 1139 additions and 505 deletions

View File

@ -0,0 +1,17 @@
namespace NetAdmin.Domain.Dto.Sys;
/// <summary>
/// 响应:获取条形图数据
/// </summary>
public sealed record GetBarChartRsp : DataAbstraction
{
/// <summary>
/// 时间戳
/// </summary>
public DateTime Timestamp { get; init; }
/// <summary>
/// 值
/// </summary>
public int Value { get; init; }
}

View File

@ -0,0 +1,17 @@
namespace NetAdmin.Domain.Dto.Sys;
/// <summary>
/// 响应:获取饼图数据
/// </summary>
public sealed record GetPieChartRsp : DataAbstraction
{
/// <summary>
/// 键名
/// </summary>
public string Key { get; init; }
/// <summary>
/// 键值
/// </summary>
public int Value { get; init; }
}