TbAidVideoChannel.cs 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbAidVideoChannel
  6. {
  7. public TbAidVideoChannel()
  8. {
  9. TbPresetPoints = new HashSet<TbPresetPoint>();
  10. TbVideoChannelRights = new HashSet<TbVideoChannelRight>();
  11. }
  12. public string ChanId { get; set; } = null!;
  13. public string DevId { get; set; } = null!;
  14. public string ChanName { get; set; } = null!;
  15. public string? ChanType { get; set; }
  16. public int ChanNo { get; set; }
  17. public string? IdinPlat { get; set; }
  18. public string IsPtz { get; set; } = null!;
  19. public string? Model { get; set; }
  20. public string? Manufacturer { get; set; }
  21. public string UseState { get; set; } = null!;
  22. public int? SeqNo { get; set; }
  23. public string? Comment { get; set; }
  24. public virtual TbAidVideoDev Dev { get; set; } = null!;
  25. public virtual ICollection<TbPresetPoint> TbPresetPoints { get; set; }
  26. public virtual ICollection<TbVideoChannelRight> TbVideoChannelRights { get; set; }
  27. }
  28. }