UserRoleNavigationEntity.cs 416 B

12345678910111213141516171819
  1. using CZFW.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Text;
  6. namespace CZFW.Framework.Model.Entity
  7. {
  8. [Table("cz_user_role_navigation")]
  9. public class UserRoleNavigationEntity : EntityBase
  10. {
  11. public int RoleId { get; set; }
  12. public int UserId { get; set; }
  13. public int NavigationId { get; set; }
  14. }
  15. }