VwVideoChannelRight.cs 572 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class VwVideoChannelRight
  6. {
  7. public string RecId { get; set; } = null!;
  8. public string YongHuMing { get; set; } = null!;
  9. public string ChanId { get; set; } = null!;
  10. public string RightName { get; set; } = null!;
  11. public string ChanName { get; set; } = null!;
  12. public string DevName { get; set; } = null!;
  13. public string? Ip { get; set; }
  14. public int? Port { get; set; }
  15. }
  16. }