VwAidVideoChannel.cs 874 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class VwAidVideoChannel
  6. {
  7. public string ChanId { get; set; } = null!;
  8. public string DevId { get; set; } = null!;
  9. public string ChanName { get; set; } = null!;
  10. public string? ChanType { get; set; }
  11. public int ChanNo { get; set; }
  12. public string? IdinPlat { get; set; }
  13. public string IsPtz { get; set; } = null!;
  14. public string? Model { get; set; }
  15. public string? Manufacturer { get; set; }
  16. public string UseState { get; set; } = null!;
  17. public int? SeqNo { get; set; }
  18. public string? Comment { get; set; }
  19. public string DevName { get; set; } = null!;
  20. public string? Ip { get; set; }
  21. public int? Port { get; set; }
  22. }
  23. }