RunAdCard.cs 633 B

1234567891011121314151617181920
  1. using Ips.Library.Entity;
  2. namespace Ips.Sps.Scheduling
  3. {
  4. public class RunAdCard
  5. {
  6. public int CardId { get; set; }
  7. public string CardName { get; set; }
  8. public string CardCode { get; set; }
  9. public AdCardType CardType { get; set; }
  10. public AdTriggerMode TriggerMode { get; set; }
  11. public AdClockType ClockType { get; set; }
  12. public long ClockFreq { get; set; }
  13. public int DdcFreq { get; set; }
  14. public int Mutil { get; set; }
  15. public string StorePath { get; set; }
  16. public List<RunAdCh> Channels { get; set; } = new List<RunAdCh>();
  17. }
  18. }