1234567891011121314151617 |
- 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; }
- }
- }
|