18 lines
572 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 VwVideoChannelRight
{
public string RecId { get; set; } = null!;
public string YongHuMing { get; set; } = null!;
public string ChanId { get; set; } = null!;
public string RightName { get; set; } = null!;
public string ChanName { get; set; } = null!;
public string DevName { get; set; } = null!;
public string? Ip { get; set; }
public int? Port { get; set; }
}
}