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 { /// /// 客服接口类Api /// /// @author lwh /// @date 2023-10-21 /// public interface ICustomerServiceServiceApi : IBaseService { /// /// 获取客服分页列表(Api) /// /// /// Task> GetCustomerServiceListApi(CustomerServiceQueryDtoApi parm); } }