ImAlert200010.cs 876 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_Data.Models
  4. {
  5. public partial class ImAlert200010
  6. {
  7. public string Id { get; set; } = null!;
  8. public string? StatCode { get; set; }
  9. public string? DeviceId { get; set; }
  10. public string Alerter { get; set; } = null!;
  11. public string AlertType { get; set; } = null!;
  12. public string AlertLevel { get; set; } = null!;
  13. public string AlertTime { get; set; } = null!;
  14. public string TimeSrc { get; set; } = null!;
  15. public string Content { get; set; } = null!;
  16. public string State { get; set; } = null!;
  17. public DateTime RecTime { get; set; }
  18. public string AlertDomain { get; set; } = null!;
  19. public string? Reserved { get; set; }
  20. public string? LnkType { get; set; }
  21. }
  22. }