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