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

19 lines
447 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>
/// 创 建:超级管理员
/// 日 期2023-12-25 08:54
/// 描 述:组织实体扩展类
/// </summary>
[SugarTable("sys_organize")]
[TenantAttribute("0")]
public class OrganizeExtend : OrganizeEntity
{
//使用导入错误信息
public string ErrorMsg { get; set; }
public string F_ManagerName { get; set; }
}
}