ICallNativeRepository.cs 399 B

1234567891011121314
  1. using Hotline.CallCenter.Calls;
  2. using Hotline.Share.Enums.Order;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using XF.Domain.Repository;
  9. namespace Hotline.Repository.SqlSugar.CallCenter;
  10. public interface ICallNativeRepository : IRepository<CallNative>
  11. {
  12. Task<int> UpdateReplyTxtAsync(string callId, string replyTxt);
  13. }