30 lines
795 B
C#
30 lines
795 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ARW.Model;
|
|
using ARW.Model.Dto.Api.CustomerServices;
|
|
using ARW.Model.Models.Business.CustomerServices;
|
|
using ARW.Model.Vo.Api.CustomerServices;
|
|
|
|
namespace ARW.Service.Api.IBusinessService.CustomerServices
|
|
{
|
|
/// <summary>
|
|
/// 客服接口类Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-21
|
|
/// </summary>
|
|
public interface ICustomerServiceServiceApi : IBaseService<CustomerService>
|
|
{
|
|
/// <summary>
|
|
/// 获取客服分页列表(Api)
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<List<CustomerServiceVoApi>> GetCustomerServiceListApi(CustomerServiceQueryDtoApi parm);
|
|
|
|
}
|
|
}
|