20 lines
676 B
C#
20 lines
676 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|||
|
{
|
|||
|
public partial class IaVMaChannel
|
|||
|
{
|
|||
|
public string RecId { get; set; } = null!;
|
|||
|
public string MaId { get; set; } = null!;
|
|||
|
public string ChanId { get; set; } = null!;
|
|||
|
public string ChanName { get; set; } = null!;
|
|||
|
public string DevId { get; set; } = null!;
|
|||
|
public string DevName { get; set; } = null!;
|
|||
|
public string ChanType { get; set; } = null!;
|
|||
|
public string UseState { get; set; } = null!;
|
|||
|
public int? SeqNo { get; set; }
|
|||
|
public string Maname { get; set; } = null!;
|
|||
|
}
|
|||
|
}
|