12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TSYS_UserRole
- {
- public Guid C_UserCode { get; set; }
- public Guid C_RoleCode { get; set; }
- public Guid C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public virtual TSYS_User C_CreateByNavigation { get; set; }
- public virtual TSYS_Role C_RoleCodeNavigation { get; set; }
- public virtual TSYS_User C_UserCodeNavigation { get; set; }
- }
- }
|