TelOperationXthxLog.cs 939 B

12345678910111213141516171819202122232425262728293031323334
  1. using Hotline.Share.Enums.CallCenter;
  2. using SqlSugar;
  3. using System.ComponentModel;
  4. using XF.Domain.Repository;
  5. namespace Hotline.CallCenter.Tels
  6. {
  7. [Description("坐席动作类型log")]
  8. public class TelOperationXthxLog : CreationEntity
  9. {
  10. /// <summary>
  11. /// 分机号
  12. /// </summary>
  13. [SugarColumn(ColumnDescription = "分机号")]
  14. public string? TelNo { get; set; }
  15. /// <summary>
  16. /// 工号
  17. /// </summary>
  18. [SugarColumn(ColumnDescription = "工号")]
  19. public string? StaffNo { get; set; }
  20. /// <summary>
  21. /// 分机状态
  22. /// </summary>
  23. public EOperationStatus Status { get; set; }
  24. /// <summary>
  25. /// 传入Json
  26. /// </summary>
  27. [SugarColumn(ColumnDataType = "json", IsJson = true, IsNullable = true, ColumnDescription = "传入Json")]
  28. public string? Json { get; set; }
  29. }
  30. }