21 lines
454 B
C#
21 lines
454 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yunda.ISAS.DataMonitoringServer.DataAnalysis.Model
|
|
{
|
|
public class LastTrueResult
|
|
{
|
|
/// <summary>
|
|
/// 条件Id
|
|
/// </summary>
|
|
public Guid ConditionId { get; set; }
|
|
/// <summary>
|
|
/// 触发时间
|
|
/// </summary>
|
|
public DateTime Time { get; set; }
|
|
}
|
|
}
|