18 lines
572 B
C#
18 lines
572 B
C#
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; }
|
|
}
|
|
}
|