using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class TbYongHu { public TbYongHu() { TbQuanXians = new HashSet(); TbVideoChannelRights = new HashSet(); YongHuZus = new HashSet(); YongHus = new HashSet(); } public string YongHuMing { get; set; } = null!; public string LeiXing { get; set; } = null!; public string? QuanMing { get; set; } public string? YongHuMiaoShu { get; set; } public DateTime ChuangJianSj { get; set; } public string? KouLing { get; set; } public string? ZhuangTai { get; set; } public string? ZhuYe { get; set; } public string? BuMenId { get; set; } public int ErrCount { get; set; } public DateTime? LastErrTime { get; set; } public virtual ICollection TbQuanXians { get; set; } public virtual ICollection TbVideoChannelRights { get; set; } public virtual ICollection YongHuZus { get; set; } public virtual ICollection YongHus { get; set; } } }