using Ips.Library.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ips.Sps.Scheduling.Entities { public class RunTsk { public int TskId { get; set; } public string TskName { get; set; } public DateTime WorkTime { get; set; } public bool DfLoc { get; set; } public bool IsHistory { get; set; } public TskType TskType { get; set; } public SignalType SigType { get; set; } public AdMode AdMode { get; set; } public SigFileFindType FileFindType { get; set; } public DateTime StartTime { get; set; } public DateTime StopTime { get; set; } public DateTime SigTime { get; set; } public RunAdCard AdCard { get; set; } public List TarSigList { get; set; } = new List(); public List RefSigList { get; set; } = new List(); public List DxSigList { get; set; } = new List(); public IEnumerable SigList => TarSigList.Concat(RefSigList); } }