namespace Admin.Core.Repository.Admin.Output { /// /// 角色导出 /// public partial class RoleDataOutput { /// /// 租户Id /// public long? TenantId { get; set; } /// /// 用户Id /// public long Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 启用 /// public bool Enabled { get; set; } /// /// 排序 /// public int Sort { get; set; } } }