From d64a364e912bb0d34c3efabd1bdee9a2f6ec0878 Mon Sep 17 00:00:00 2001 From: zhengyuxuan <zhengyuxuan1995> Date: 星期一, 24 三月 2025 14:06:24 +0800 Subject: [PATCH] fix:微信退款bug修复、新增获取渠道折扣接口 --- LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs | 31 ++++++++++++++++++++++++++----- 1 files changed, 26 insertions(+), 5 deletions(-) diff --git a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs index 54f3991..ef263de 100644 --- a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs +++ b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs @@ -457,10 +457,21 @@ public string RefundApplyRemark { get; set; } public string RefundCheckRemark { get; set; } + /// <summary> /// 娓犻亾娴佹按鍙� /// </summary> public string ACOOLYOrderNo { get; set; } + + /// <summary> + /// 骞冲彴閫�娆剧姸鎬� + /// </summary> + public LifePayRefundStatusEnum? LifePayRefundStatus { get; set; } + + /// <summary> + /// 骞冲彴鐘舵�� + /// </summary> + public ACOOLYStatusEnum? ACOOLYStatus { get; set; } } public class LifePayOrderOutput @@ -620,7 +631,7 @@ /// <summary> /// 鎵嬬画璐规瘮渚� /// </summary> - public decimal PremiumRate { get; set; } + public decimal? PremiumRate { get; set; } /// <summary> /// 鎵嬬画璐� @@ -869,6 +880,11 @@ public class TopStatisticsOutput { /// <summary> + /// 鍒涘缓鏃堕棿 + /// </summary> + public DateTime CreationTime { get; set; } + + /// <summary> /// 璐︽埛浣欓 /// </summary> public decimal Amount { get; set; } @@ -881,7 +897,7 @@ /// <summary> /// 鏄ㄦ棩鏀舵 /// </summary> - public decimal ReceiptsYesterda { get; set; } + public decimal ReceiptsYesterday { get; set; } /// <summary> @@ -897,17 +913,17 @@ /// <summary> /// 鏄ㄦ棩涓嬪崟 /// </summary> - public int OrdersNumYesterda { get; set; } + public int OrdersNumYesterday { get; set; } /// <summary> /// 鏄ㄦ棩鎴愬姛 /// </summary> - public int YesterdaSuccess { get; set; } + public int YesterdaySuccess { get; set; } /// <summary> /// 鏄ㄦ棩澶辫触 /// </summary> - public int YesterdaFail { get; set; } + public int YesterdayFail { get; set; } /// <summary> /// 绱鐢ㄦ埛 @@ -919,4 +935,9 @@ /// </summary> public int YesterdayActiveUsers { get; set; } +} + +public class ChannelRateOutput +{ + public decimal ChannlesRate { get; set; } } \ No newline at end of file -- Gitblit v1.9.1