TbAidPlatform.cs 933 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbAidPlatform
  6. {
  7. public TbAidPlatform()
  8. {
  9. TbAidVideoDevs = new HashSet<TbAidVideoDev>();
  10. }
  11. public string PlatId { get; set; } = null!;
  12. public string PlatType { get; set; } = null!;
  13. public string PlatName { get; set; } = null!;
  14. public string PlatImpl { get; set; } = null!;
  15. public string UseState { get; set; } = null!;
  16. public string? Ip { get; set; }
  17. public int? Port { get; set; }
  18. public string? UserName { get; set; }
  19. public string? PassEnc { get; set; }
  20. public string? Model { get; set; }
  21. public string? Manufacturer { get; set; }
  22. public string? Comment { get; set; }
  23. public virtual ICollection<TbAidVideoDev> TbAidVideoDevs { get; set; }
  24. }
  25. }