12345678910111213141516171819 |
- using CZFW.Core;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace CZFW.Framework.Model.Entity
- {
- [Table("cz_user_role_navigation")]
- public class UserRoleNavigationEntity : EntityBase
- {
- public int RoleId { get; set; }
- public int UserId { get; set; }
- public int NavigationId { get; set; }
- }
- }
|