12345678910111213141516171819202122232425 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using XF.Domain.Repository;
- namespace Hotline.CallCenter.Calls
- {
- public class CallSatisfaction:CreationEntity
- {
- ///Id 和CallNative.Id一致 和Order.CallId 一致
- /// <summary>
- /// 兴唐通话记录编号(业务不用)
- /// </summary>
- public string CallNo { get; set; }
- /// <summary>
- /// 按键结果
- /// </summary>
- public string Result { get; set; }
- }
- }
|