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

34 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class TbAidVideoDev
{
public TbAidVideoDev()
{
IaStatAidVideoDevs = new HashSet<IaStatAidVideoDev>();
TbAidVideoChannels = new HashSet<TbAidVideoChannel>();
TbPresetPoints = new HashSet<TbPresetPoint>();
}
public string DevId { get; set; } = null!;
public string PlatId { get; set; } = null!;
public string DevName { get; set; } = null!;
public string? Ip { get; set; }
public int? Port { get; set; }
public string? UserName { get; set; }
public string? PassEnc { get; set; }
public string? Model { get; set; }
public string? Manufacturer { get; set; }
public string UseState { get; set; } = null!;
public int? SeqNo { get; set; }
public string? Comment { get; set; }
public virtual TbAidPlatform Plat { get; set; } = null!;
public virtual ICollection<IaStatAidVideoDev> IaStatAidVideoDevs { get; set; }
public virtual ICollection<TbAidVideoChannel> TbAidVideoChannels { get; set; }
public virtual ICollection<TbPresetPoint> TbPresetPoints { get; set; }
}
}