21 lines
714 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
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!;
}
}