using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayFundTransCommonQueryResponse. /// public class AlipayFundTransCommonQueryResponse : AopResponse { /// /// 预计到账时间,转账到银行卡专用,格式为yyyy-MM-dd HH:mm:ss,转账受理失败不返回。 注意: 此参数为预计时间,可能与实际到账时间有较大误差,不能作为实际到账时间使用,仅供参考用途。 /// [XmlElement("arrival_time_end")] public string ArrivalTimeEnd { get; set; } /// /// 商户查询代扣订单信息时返回其在代扣请求中传入的账单属性 /// [XmlElement("deduct_bill_info")] public string DeductBillInfo { get; set; } /// /// 查询到的订单状态为FAIL失败或REFUND退票时,返回错误代码 /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 查询到的订单状态为FAIL失败或REFUND退票时,返回具体的原因。 /// [XmlElement("fail_reason")] public string FailReason { get; set; } /// /// 预计收费金额(元),转账到银行卡专用,数字格式,精确到小数点后2位,转账失败或转账受理失败不返回。 /// [XmlElement("order_fee")] public string OrderFee { get; set; } /// /// 支付宝转账单据号,查询失败不返回。 /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 商户订单号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 商户回传参数 /// [XmlElement("passback_params")] public string PassbackParams { get; set; } /// /// 支付时间,格式为yyyy-MM-dd HH:mm:ss,转账失败不返回。 /// [XmlElement("pay_date")] public string PayDate { get; set; } /// /// 支付宝支付资金流水号,转账失败不返回。 /// [XmlElement("pay_fund_order_id")] public string PayFundOrderId { get; set; } /// /// 转账单据状态。可能出现的状态如下: SUCCESS:转账成功; WAIT_PAY:等待支付; CLOSED:订单超时关闭; FAIL:失败(适用于"单笔转账到银行卡"); DEALING:处理中(适用于"单笔转账到银行卡"); REFUND:退票(适用于"单笔转账到银行卡"); alipay.fund.trans.app.pay涉及的状态: WAIT_PAY、SUCCESS、CLOSED alipay.fund.trans.refund涉及的状态:SUCCESS alipay.fund.trans.uni.transfer涉及的状态:SUCCESS、FAIL、DEALING、REFUND /// [XmlElement("status")] public string Status { get; set; } /// /// 付款金额,收银台场景下付款成功后的支付金额,订单状态为SUCCESS才返回,其他状态不返回。 /// [XmlElement("trans_amount")] public string TransAmount { get; set; } /// /// 商户在查询代发订单信息时返回其在代发请求中传入的账单属性。 /// [XmlElement("transfer_bill_info")] public string TransferBillInfo { get; set; } } }