using System; using Furion.DatabaseAccessor; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 角色资源 /// public class RoleResource : CommonEntity { /// /// 角色Id /// public Guid RoleId { get; set; } /// /// 角色 /// public Role Role { get; set; } /// /// 资源Id /// public Guid ResourceId { get; set; } /// /// 资源 /// public Resource Resource { get; set; } /// /// 数据权限 /// public EnumRoleWebApiDataPower DataPower { get; set; } } }