using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ARW.Model; using ARW.Model.Dto.Business.Payments; using ARW.Model.Models.Business.Payments; using ARW.Model.Vo.Business.Payments; namespace ARW.Service.Business.IBusinessService.Payments { public interface IPaymentService : IBaseService { /// /// 获取支付订单分页列表 /// /// /// Task> GetPaymentList(PaymentQueryDto parm); } }