TSYS_UserRole.cs 557 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TSYS_UserRole
  7. {
  8. public Guid C_UserCode { get; set; }
  9. public Guid C_RoleCode { get; set; }
  10. public Guid C_CreateBy { get; set; }
  11. public DateTime D_CreateOn { get; set; }
  12. public virtual TSYS_User C_CreateByNavigation { get; set; }
  13. public virtual TSYS_Role C_RoleCodeNavigation { get; set; }
  14. public virtual TSYS_User C_UserCodeNavigation { get; set; }
  15. }
  16. }