From 65e7b312659c358970262b027901bb55d764f0f9 Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期日, 30 三月 2025 07:32:35 +0800
Subject: [PATCH] fix:拉取收支流水
---
LifePayment/LifePayment.Domain.Shared/WeChat/WxPayPostBaseModel.cs | 77 ++++++++++++++++++++++++++++++++++++++
1 files changed, 76 insertions(+), 1 deletions(-)
diff --git a/LifePayment/LifePayment.Domain.Shared/WeChat/WxPayPostBaseModel.cs b/LifePayment/LifePayment.Domain.Shared/WeChat/WxPayPostBaseModel.cs
index d088224..c1266ee 100644
--- a/LifePayment/LifePayment.Domain.Shared/WeChat/WxPayPostBaseModel.cs
+++ b/LifePayment/LifePayment.Domain.Shared/WeChat/WxPayPostBaseModel.cs
@@ -806,10 +806,30 @@
public class WxPayDomesticRefundsQueryReponse
{
/// <summary>
+ /// 杩斿洖缁撴灉
+ /// </summary>
+ [JsonProperty("code")]
+ public string Code { get; set; }
+
+ /// <summary>
+ /// 杩斿洖淇℃伅
+ /// </summary>
+ [JsonProperty("message")]
+ public string Message { get; set; }
+
+ /// <summary>
/// 寰俊鏀粯閫�娆惧崟鍙�
/// </summary>
[JsonProperty("refund_id ")]
public string RefundId { get; set; }
+
+
+ /// <summary>
+ /// 寰俊鏀粯閫�娆剧姸鎬�
+ /// </summary>
+ [JsonProperty("refund_status ")]
+ public string RefundStatus { get; set; }
+
/// <summary>
/// 鍟嗘埛閫�娆惧崟鍙�
/// </summary>
@@ -859,7 +879,62 @@
/// 閲戦淇℃伅
/// </summary>
[JsonProperty("amount")]
- public string Amount { get; set; }
+ public Model_WxPayDomesticRefunds_Amount Amount { get; set; }
}
+
+ public class WxPayTradeQueryReponse
+ {
+ /// <summary>
+ /// 杩斿洖缁撴灉
+ /// </summary>
+ [JsonProperty("code")]
+ public string Code { get; set; }
+ /// <summary>
+ /// 杩斿洖淇℃伅
+ /// </summary>
+ [JsonProperty("message")]
+ public string Message { get; set; }
+
+ /// <summary>
+ /// 鍟嗘埛璁㈠崟鍙�
+ /// </summary>
+ [JsonProperty("out_trade_no")]
+ public string OutTradeNo { get; set; }
+
+ /// <summary>
+ /// 寰俊鏀粯璁㈠崟鍙�
+ /// </summary>
+ [JsonProperty("transaction_id")]
+ public string TransactionId { get; set; }
+
+ /// <summary>
+ /// 浜ゆ槗绫诲瀷
+ /// </summary>
+ [JsonProperty("trade_type")]
+ public string TradeType { get; set; }
+
+
+ /// <summary>
+ /// 浜ゆ槗鐘舵��
+ /// </summary>
+ [JsonProperty("trade_state")]
+ public string TradeState { get; set; }
+
+ /// <summary>
+ /// 浜ゆ槗鐘舵�佹弿杩�
+ /// </summary>
+ [JsonProperty("trade_state_desc")]
+ public string TradeStateDesc { get; set; }
+
+
+ [JsonProperty("success_time ")]
+ public string SuccessTime { get; set; }
+
+ // <summary>
+ /// 閲戦淇℃伅
+ /// </summary>
+ [JsonProperty("amount")]
+ public Model_WxPayDomesticRefunds_Amount Amount { get; set; }
+ }
}
\ No newline at end of file
--
Gitblit v1.9.1