RoleMappingEntity.cs 359 B

1234567891011121314151617
  1. using CZFW.Framework.Model.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Text;
  6. namespace CZKJ.GBRS2.Entity
  7. {
  8. [Table("user_role_nav")]
  9. public class RoleMappingEntity:EntityBase
  10. {
  11. public int RoleId { get; set; }
  12. public int NavId { get; set; }
  13. }
  14. }