ImProtectDeviceTmp.cs 737 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImProtectDeviceTmp
  6. {
  7. public ImProtectDeviceTmp()
  8. {
  9. ImDeviceDataTmps = new HashSet<ImDeviceDataTmp>();
  10. ImDeviceDzTmps = new HashSet<ImDeviceDzTmp>();
  11. }
  12. public string Id { get; set; } = null!;
  13. public int PuctgyCode { get; set; }
  14. public string DeviceName { get; set; } = null!;
  15. public virtual ImPuCtgy PuctgyCodeNavigation { get; set; } = null!;
  16. public virtual ICollection<ImDeviceDataTmp> ImDeviceDataTmps { get; set; }
  17. public virtual ICollection<ImDeviceDzTmp> ImDeviceDzTmps { get; set; }
  18. }
  19. }