21 lines
345 B
C#
21 lines
345 B
C#
|
|
namespace Application.Dto.Statistics;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 余额统计DTO
|
||
|
|
/// </summary>
|
||
|
|
public record BalanceStatisticsDto(
|
||
|
|
int Day,
|
||
|
|
decimal CumulativeBalance
|
||
|
|
);
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 每日统计DTO
|
||
|
|
/// </summary>
|
||
|
|
public record DailyStatisticsDto(
|
||
|
|
int Day,
|
||
|
|
int Count,
|
||
|
|
decimal Expense,
|
||
|
|
decimal Income,
|
||
|
|
decimal Saving
|
||
|
|
);
|