using SqlSugar; namespace HT.Cloud.Domain.SystemOrganize { /// /// 创 建:超级管理员 /// 日 期:2020-08-06 08:54 /// 描 述:角色类别实体扩展类 /// [SugarTable("sys_role")] [TenantAttribute("0")] public class RoleExtend : RoleEntity { //使用导入错误信息 public string ErrorMsg { get; set; } /// /// 备注 /// /// public string F_Remark { get; set; } public string F_CompanyName { get; set; } } }