| 123456789101112131415161718192021222324252627282930313233343536373839404142 | 
							- using System.Text.Json.Serialization;
 
- namespace Essensoft.AspNetCore.Payment.WeChatPay.V3.Domain
 
- {
 
-     /// <summary>
 
-     /// 金额信息
 
-     /// </summary>
 
-     public class RefundNotifyAmount : WeChatPayObject
 
-     {
 
-         /// <summary>
 
-         /// 订单金额
 
-         /// 订单总金额,单位为分,只能为整数,详见支付金额
 
-         /// 示例值:999
 
-         /// </summary>
 
-         [JsonPropertyName("total")]
 
-         public int Total { get; set; }
 
-         /// <summary>
 
-         /// 退款金额
 
-         /// 退款金额,币种的最小单位,只能为整数,不能超过原订单支付金额,如果有使用券,后台会按比例退。
 
-         /// 示例值:999
 
-         /// </summary>
 
-         [JsonPropertyName("refund")]
 
-         public int Refund { get; set; }
 
-         /// <summary>
 
-         /// 用户支付金额
 
-         /// 用户实际支付金额,单位为分,只能为整数,详见支付金额
 
-         /// 示例值:999
 
-         /// </summary>
 
-         [JsonPropertyName("payer_total")]
 
-         public int PayerTotal { get; set; }
 
-         /// <summary>
 
-         /// 用户退款金额
 
-         /// 退款给用户的金额,不包含所有优惠券金额
 
-         /// 示例值:999
 
-         /// </summary>
 
-         [JsonPropertyName("payer_refund")]
 
-         public int PayerRefund { get; set; }
 
-     }
 
- }
 
 
  |