TbYongHu.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbYongHu
  6. {
  7. public TbYongHu()
  8. {
  9. TbQuanXians = new HashSet<TbQuanXian>();
  10. TbVideoChannelRights = new HashSet<TbVideoChannelRight>();
  11. YongHuZus = new HashSet<TbYongHu>();
  12. YongHus = new HashSet<TbYongHu>();
  13. }
  14. public string YongHuMing { get; set; } = null!;
  15. public string LeiXing { get; set; } = null!;
  16. public string? QuanMing { get; set; }
  17. public string? YongHuMiaoShu { get; set; }
  18. public DateTime ChuangJianSj { get; set; }
  19. public string? KouLing { get; set; }
  20. public string? ZhuangTai { get; set; }
  21. public string? ZhuYe { get; set; }
  22. public string? BuMenId { get; set; }
  23. public int ErrCount { get; set; }
  24. public DateTime? LastErrTime { get; set; }
  25. public virtual ICollection<TbQuanXian> TbQuanXians { get; set; }
  26. public virtual ICollection<TbVideoChannelRight> TbVideoChannelRights { get; set; }
  27. public virtual ICollection<TbYongHu> YongHuZus { get; set; }
  28. public virtual ICollection<TbYongHu> YongHus { get; set; }
  29. }
  30. }