nop4.3 用户权限管理

权限管理涉及到5张表:

//用户表

select * from Customer

//角色表
select * from CustomerRole

//用户和角色对应关系
select * from Customer_CustomerRole_Mapping

//权限记录表,可以理解为每个菜单对应一条记录
select * from PermissionRecord 

//角色和权限记录的对应关系
select * from PermissionRecord_Role_Mapping

原文地址:https://www.cnblogs.com/hpbkin/p/12956375.html