1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
- {
- public partial class ImDeviceYx
- {
- public string Id { get; set; } = null!;
- public string Yxname { get; set; } = null!;
- public string? YxType { get; set; }
- public string? SwOnStr { get; set; }
- public string? SwOffStr { get; set; }
- public string? SwUncertStr { get; set; }
- public string AlertLevel { get; set; } = null!;
- public string NormalState { get; set; } = null!;
- public virtual ImAlertLevel AlertLevelNavigation { get; set; } = null!;
- public virtual ImDeviceDatum IdNavigation { get; set; } = null!;
- }
- }
|