1234567891011121314 |
- using Hotline.CallCenter.Calls;
- using Hotline.Share.Enums.Order;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using XF.Domain.Repository;
- namespace Hotline.Repository.SqlSugar.CallCenter;
- public interface ICallNativeRepository : IRepository<CallNative>
- {
- Task<int> UpdateReplyTxtAsync(string callId, string replyTxt);
- }
|