NewGaoKaoApi/PaymentSDK/AliPay/Domain/KbOrderFundsVoucherModel.cs

55 lines
1.4 KiB
C#
Raw Permalink Blame History

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.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KbOrderFundsVoucherModel Data Structure.
/// </summary>
[Serializable]
public class KbOrderFundsVoucherModel : AopObject
{
/// <summary>
/// 资金流入账户,打款动作存在该字段
/// </summary>
[XmlElement("account")]
public string Account { get; set; }
/// <summary>
/// 金额
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 资金凭证ID
/// </summary>
[XmlElement("funds_voucher_no")]
public string FundsVoucherNo { get; set; }
/// <summary>
/// 资金流转发生时间
/// </summary>
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 门店ID打款动作存在该字段
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 资金流入外部门店ID打款时存在该字段
/// </summary>
[XmlElement("store_id")]
public string StoreId { get; set; }
/// <summary>
/// 资金类型 PAY/SETTLE/REFUND 对应 支付/打款/退款
/// </summary>
[XmlElement("trans_type")]
public string TransType { get; set; }
}
}