IPbxApplication.cs 389 B

123456789101112131415
  1. using Hotline.Share.Dtos.CallCenter;
  2. using SqlSugar;
  3. namespace Hotline.Application.CallCenter
  4. {
  5. public interface IPbxApplication
  6. {
  7. /// <summary>
  8. /// 小修申请记录
  9. /// </summary>
  10. /// <param name="dto"></param>
  11. /// <returns></returns>
  12. ISugarQueryable<TelRestApplyListDto> GetRestApplyList(TelRestApplyRequestDto dto);
  13. }
  14. }