CallSatisfaction.cs 584 B

12345678910111213141516171819202122232425
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using XF.Domain.Repository;
  8. namespace Hotline.CallCenter.Calls
  9. {
  10. public class CallSatisfaction:CreationEntity
  11. {
  12. ///Id 和CallNative.Id一致 和Order.CallId 一致
  13. /// <summary>
  14. /// 兴唐通话记录编号(业务不用)
  15. /// </summary>
  16. public string CallNo { get; set; }
  17. /// <summary>
  18. /// 按键结果
  19. /// </summary>
  20. public string Result { get; set; }
  21. }
  22. }