添加项目文件。

This commit is contained in:
dell
2023-03-03 16:07:50 +08:00
parent 2c462551b6
commit 011039960e
585 changed files with 362460 additions and 0 deletions

View File

@ -0,0 +1,25 @@
using SqlSugar;
namespace HT.Cloud.Domain.SystemOrganize
{
/// <summary>
/// 创 建:超级管理员
/// 日 期2020-08-06 08:54
/// 描 述:用户实体扩展类
/// </summary>
[SugarTable("sys_user")]
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; }
}
}