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_Priv>();
            TSYS_LicenseTypePrivs = new HashSet<TSYS_LicenseTypePriv>();
            TSYS_RolePrivs = new HashSet<TSYS_RolePriv>();
        }

        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<TSYS_Priv> InverseC_ParentCodeNavigation { get; set; }
        public virtual ICollection<TSYS_LicenseTypePriv> TSYS_LicenseTypePrivs { get; set; }
        public virtual ICollection<TSYS_RolePriv> TSYS_RolePrivs { get; set; }
    }
}