using Hotline.Share.Enums.CallCenter; using SqlSugar; using System.ComponentModel; using XF.Domain.Repository; namespace Hotline.CallCenter.Tels { [Description("坐席动作类型")] public class TelOperationXthx : CreationEntity { /// /// 分机id /// [SugarColumn(ColumnDescription = "分机id")] public string? TelId { get; set; } /// /// 分机号 /// [SugarColumn(ColumnDescription = "分机号")] public string? TelNo { get; set; } /// /// 工号 /// [SugarColumn(ColumnDescription = "工号")] public string? StaffNo { get; set; } /// /// 用户id /// [SugarColumn(ColumnDescription = "用户id")] public string? UserId { get; set; } /// /// 用户名称 /// [SugarColumn(ColumnDescription = "用户名称")] public string? UserName { get; set; } /// /// 分组 /// [SugarColumn(ColumnDescription = "分组")] public string? UserGroup { get; set; } /// /// 开始时间 /// [SugarColumn(ColumnDescription = "开始时间")] public DateTime? StartTime { get; set; } /// /// 结束时间 /// [SugarColumn(ColumnDescription = "结束时间")] public DateTime? EndTime { get; set; } /// /// 时长(单位:秒) /// [SugarColumn(ColumnDescription = "时长(单位:秒)")] public double? RestDuration { get; set; } /// /// 备注(冗余) /// [SugarColumn(ColumnDescription = "备注(冗余)")] public string? Reason { get; set; } /// /// 分机状态 /// public EOperationStatus OperationStatus { get; set; } } }