Files
BI/server/DongfangHydro.Dashboard.Api/Domain/ProductionTrendPoint.cs
T

14 lines
411 B
C#

namespace DongfangHydro.Dashboard.Api.Domain;
public sealed class ProductionTrendPoint
{
public Guid Id { get; set; }
public Guid OrderId { get; set; }
public DateTimeOffset SampleTime { get; set; }
public int Completion { get; set; }
public int Risk { get; set; }
public int PlannedQty { get; set; }
public int ActualQty { get; set; }
public double Achievement { get; set; }
}