33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|
{
|
|
public partial class ImDeviceYk
|
|
{
|
|
public ImDeviceYk()
|
|
{
|
|
ImProgControlItems = new HashSet<ImProgControlItem>();
|
|
}
|
|
|
|
public string Id { get; set; } = null!;
|
|
public string Ykname { get; set; } = null!;
|
|
public string? RelatedYxId { get; set; }
|
|
public string YkType { get; set; } = null!;
|
|
public string? SwOnStr { get; set; }
|
|
public string? SwOffStr { get; set; }
|
|
public string? SwUncertStr { get; set; }
|
|
public string? PreYxId { get; set; }
|
|
public int? PreState4Yk { get; set; }
|
|
public string LockMode { get; set; } = null!;
|
|
public string IsResetCmd { get; set; } = null!;
|
|
public string? PreYxIdOff { get; set; }
|
|
public int? PreState4YkOff { get; set; }
|
|
public string LockModeOff { get; set; } = null!;
|
|
|
|
public virtual ImDeviceDatum IdNavigation { get; set; } = null!;
|
|
public virtual ImNoticeBoard? ImNoticeBoard { get; set; }
|
|
public virtual ICollection<ImProgControlItem> ImProgControlItems { get; set; }
|
|
}
|
|
}
|