using System.ComponentModel; using SqlSugar; using XF.Domain.Entities; using XF.Domain.Repository; namespace Hotline.Users { /// /// 用户 /// [Description("用户")] public class User : CreationSoftDeleteEntity { /// /// 手机号(冗余) /// [SugarColumn(IsNullable = true)] public string? PhoneNo { get; set; } /// /// 展示名称(Identity.DisplayName) /// public string Name { get; set; } /// /// 工号 /// [SugarColumn(IsNullable = true)] public string? StaffNo { get; set; } /// /// 默认分机号 /// [SugarColumn(IsNullable = true)] public string? DefaultTelNo { get; set; } } }