1234567891011121314151617 |
- using CZFW.Framework.Model.Entity;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace CZKJ.GBRS2.Entity
- {
- [Table("user_role_nav")]
- public class RoleMappingEntity:EntityBase
- {
- public int RoleId { get; set; }
- public int NavId { get; set; }
- }
- }
|