Files
HTCloud/HT.Cloud.Domain/Entity/SystemOrganize/Extend/RoleExtend.cs
2023-08-24 09:28:09 +08:00

25 lines
520 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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