ImProject.cs 1.1 KB

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImProject
  6. {
  7. public ImProject()
  8. {
  9. IaVideoPatrols = new HashSet<IaVideoPatrol>();
  10. ImDiagrams = new HashSet<ImDiagram>();
  11. ImFltDistDevGrps = new HashSet<ImFltDistDevGrp>();
  12. ImProgControls = new HashSet<ImProgControl>();
  13. ImStations = new HashSet<ImStation>();
  14. }
  15. public string Id { get; set; } = null!;
  16. public string Name { get; set; } = null!;
  17. public string ProtCommMgrIp { get; set; } = null!;
  18. public DateTime CreateTime { get; set; }
  19. public string? Creator { get; set; }
  20. public virtual ICollection<IaVideoPatrol> IaVideoPatrols { get; set; }
  21. public virtual ICollection<ImDiagram> ImDiagrams { get; set; }
  22. public virtual ICollection<ImFltDistDevGrp> ImFltDistDevGrps { get; set; }
  23. public virtual ICollection<ImProgControl> ImProgControls { get; set; }
  24. public virtual ICollection<ImStation> ImStations { get; set; }
  25. }
  26. }