| | |
| | | /// </summary> |
| | | [JsonProperty("refund_status")] |
| | | public string RefundStatus { get; set; } |
| | | |
| | | [JsonProperty("amount")] |
| | | public RefundAmount Amount { get; set; } |
| | | } |
| | | |
| | | public class RefundAmount |
| | | { |
| | | /// <summary> |
| | | /// 总金额 |
| | | /// </summary> |
| | | [JsonProperty("total", NullValueHandling = NullValueHandling.Ignore)] |
| | | [Required] |
| | | public int Total { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 退款金额 |
| | | /// </summary> |
| | | [JsonProperty("refund", NullValueHandling = NullValueHandling.Ignore)] |
| | | [Required] |
| | | public int Refund { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 用户实际支付金额 |
| | | /// </summary> |
| | | [JsonProperty("payer_total", NullValueHandling = NullValueHandling.Ignore)] |
| | | [Required] |
| | | public string PayerTotal { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 用户退款金额 |
| | | /// </summary> |
| | | [JsonProperty("payer_refund", NullValueHandling = NullValueHandling.Ignore)] |
| | | [Required] |
| | | public string PayerRefund { get; set; } |
| | | } |
| | | |
| | | public class WxRechargeNotifyResult |
| | | { |
| | | /// <summary> |