From 469279cdbbfcebb15d9b1c2c9c2b7bc6210041ba Mon Sep 17 00:00:00 2001 From: sunpengfei <i@angelzzz.com> Date: 星期一, 09 六月 2025 17:10:02 +0800 Subject: [PATCH] feat:每隔10分钟定时查询15分钟内的未支付订单向微信API获取最新信息若为支付成功则更改订单状态 --- LifePayment/LifePayment.Application.Contracts/Promoter/IPromoterService.cs | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/LifePayment/LifePayment.Application.Contracts/Promoter/IPromoterService.cs b/LifePayment/LifePayment.Application.Contracts/Promoter/IPromoterService.cs index ff7afbd..c73b5e8 100644 --- a/LifePayment/LifePayment.Application.Contracts/Promoter/IPromoterService.cs +++ b/LifePayment/LifePayment.Application.Contracts/Promoter/IPromoterService.cs @@ -5,6 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; +using Volo.Abp; using Volo.Abp.Application.Services; using Volo.Abp.AutoMapper; using Volo.Abp.Users; @@ -24,6 +25,13 @@ Task<PageOutput<PromoterDto>> GetPromoters(GetPromotersInput input); /// <summary> + /// 鑾峰彇鎺ㄥ箍鍛樹俊鎭� + /// </summary> + /// <param name="phoneNumber"></param> + /// <returns></returns> + Task<PromoterDto> GetPromoter(string phoneNumber); + + /// <summary> /// 鑾峰彇娓犻亾鍜ㄨ鍒楄〃 /// </summary> /// <param name="input"></param> @@ -31,6 +39,14 @@ Task<PageOutput<ChannelConsultationDto>> GetChannelConsultation(GetChannelConsultationsInput input); /// <summary> + /// 鑾峰彇娓犻亾鍜ㄨId + /// </summary> + /// <param name="id"></param> + /// <returns></returns> + /// <exception cref="FriendlyException"></exception> + Task<ChannelConsultationDto> GetChannelConsultationById(Guid id); + + /// <summary> /// 鑾峰彇娓犻亾鍜ㄨ鍥炶璁板綍 /// </summary> /// <param name="id">娓犻亾鍜ㄨId</param> -- Gitblit v1.9.1