You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Payment.AllinPay.Models.ResponseModels
{
public class OrderRefundResponseInfo : BaseResultInfo
{
}
public class OrderRefundQueryResponse : BaseResponse<OrderRefundResponseInfo>
{
public OrderRefundResponseInfo response { get; set; }
protected override OrderRefundResponseInfo GetResultInfo()
{
return response;
}
}
public class OrderRefund
{
/// <summary>
/// 商户订单号(支付订单)
/// </summary>
public string bizOrderNo { get; set; }
/// <summary>
/// 通联支付订单号
/// </summary>
public string orderNo { get; set; }
///<summary>
///退款金额 100代表1元以分为单位
///</summary>
public long amount { get; set; }
/// <summary>
/// 手续费退款金额,单位为分
/// </summary>
public long fee { get; set; }
/// <summary>
/// 订单是否成功
/// 成功success;进行中pending;失败fail
/// </summary>
public string status { get; set; }
}
}