2024-08-21 16:50:14 +08:00

17 lines
524 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class IaVAllChannel
{
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; }
}
}