1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TSYS_RolePriv
- {
- public Guid C_RoleCode { get; set; }
- public string C_PrivilegeCode { get; set; }
- public Guid C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public int? I_Type { get; set; }
- public virtual TSYS_User C_CreateByNavigation { get; set; }
- public virtual TSYS_Priv C_PrivilegeCodeNavigation { get; set; }
- public virtual TSYS_Role C_RoleCodeNavigation { get; set; }
- }
- }
|