mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
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; }
|
|
}
|