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

15 lines
528 B
C#

namespace DongfangHydro.Dashboard.Api.Domain;
public sealed class RiskEvent
{
public Guid Id { get; set; }
public Guid OrderId { get; set; }
public Guid NodeId { get; set; }
public string OrderCode { get; set; } = string.Empty;
public string NodeName { get; set; } = string.Empty;
public string RiskLevel { get; set; } = "normal";
public string Message { get; set; } = string.Empty;
public string HandlingStatus { get; set; } = "processing";
public DateTimeOffset OccurredAt { get; set; }
}