using System; using System.Collections.Generic; #nullable disable namespace Ropin.Inspection.Model.Entities { public partial class TSYS_Priv { public TSYS_Priv() { InverseC_ParentCodeNavigation = new HashSet(); TSYS_LicenseTypePrivs = new HashSet(); TSYS_RolePrivs = new HashSet(); } public string C_Code { get; set; } public string C_ParentCode { get; set; } public string C_Module { get; set; } public string C_Type { get; set; } public string C_Name { get; set; } public int? I_Sort { get; set; } public string C_ImageUrl { get; set; } public string C_PageUrl { get; set; } public string C_Remark { get; set; } public string C_Status { get; set; } public virtual TSYS_Priv C_ParentCodeNavigation { get; set; } public virtual ICollection InverseC_ParentCodeNavigation { get; set; } public virtual ICollection TSYS_LicenseTypePrivs { get; set; } public virtual ICollection TSYS_RolePrivs { get; set; } } }