ImAlert201310.cs 728 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImAlert201310
  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. }
  19. }