IaVideoPatrol.cs 764 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class IaVideoPatrol
  6. {
  7. public IaVideoPatrol()
  8. {
  9. IaVideoPatrolItems = new HashSet<IaVideoPatrolItem>();
  10. }
  11. public string PatId { get; set; } = null!;
  12. public string PatName { get; set; } = null!;
  13. public string PrjId { get; set; } = null!;
  14. public string? PatType { get; set; }
  15. public int? SeqNo { get; set; }
  16. public string? Comment { get; set; }
  17. public DateTime CreTime { get; set; }
  18. public virtual ImProject Prj { get; set; } = null!;
  19. public virtual ICollection<IaVideoPatrolItem> IaVideoPatrolItems { get; set; }
  20. }
  21. }