24 lines
623 B
C#
24 lines
623 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.Business.Payments;
|
|
using ARW.Model.Models.Business.Payments;
|
|
using ARW.Model.Vo.Business.Payments;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.Payments
|
|
{
|
|
public interface IPaymentService : IBaseService<Payment>
|
|
{
|
|
/// <summary>
|
|
/// 获取支付订单分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<PaymentVo>> GetPaymentList(PaymentQueryDto parm);
|
|
|
|
}
|
|
}
|