using CRM.Core.DTO; using CRM.Core.DTO.Ord; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Wx { public interface IWX_SZZYORDERDEPOSIT : IRepository { void Add(OrderDepositDto dto); retMsg> Pay2(PayDto2 dto); retMsg> Use(PayUseDto dto); retMsg GetCoreDepositList(Pager pager, OrderPayListReqDto dto); /// /// 订单流水使用数据 中心点获取 /// /// /// /// retMsg GetCorePayList(Pager pager, OrderPayUseListReqDto dto); retMsg GetCoreDepositLastPay(LastPriceReqDto dto); } }