Files
HTCloud/HT.Cloud.Domain/Entity/SystemOrganize/Extend/UserExtend.cs
2024-11-14 09:01:55 +08:00

27 lines
608 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_user")]
[TenantAttribute("0")]
public class UserExtend : UserEntity
{
//使用导入错误信息
public string ErrorMsg { get; set; }
/// <summary>
/// 备注
/// </summary>
/// <returns></returns>
public string F_Remark { get; set; }
public string F_DutyName { get; set; }
public string F_CompanyName { get; set; }
public string F_ManagerName { get; set; }
}
}