IaMonitorArea.cs 666 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class IaMonitorArea
  6. {
  7. public IaMonitorArea()
  8. {
  9. IaMaChannels = new HashSet<IaMaChannel>();
  10. }
  11. public string MaId { get; set; } = null!;
  12. public string? ParentId { get; set; }
  13. public string Maname { get; set; } = null!;
  14. public string StatCode { get; set; } = null!;
  15. public int? SeqNo { get; set; }
  16. public virtual ImStation StatCodeNavigation { get; set; } = null!;
  17. public virtual ICollection<IaMaChannel> IaMaChannels { get; set; }
  18. }
  19. }