13 lines
274 B
C#
13 lines
274 B
C#
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.SystemStatistics;
|
|
|
|
/// <summary>
|
|
/// 利润统计输入
|
|
/// </summary>
|
|
public class ProfitStatisticsInput
|
|
{
|
|
/// <summary>
|
|
/// 当前成本(RMB)
|
|
/// </summary>
|
|
public decimal CurrentCost { get; set; }
|
|
}
|