Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KbOrderFundsVoucherModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

54 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KbOrderFundsVoucherModel Data Structure.
/// </summary>
[Serializable]
public class KbOrderFundsVoucherModel : AopObject
{
/// <summary>
/// 资金流入账户,打款动作存在该字段
/// </summary>
[JsonProperty("account")]
public string Account { get; set; }
/// <summary>
/// 金额
/// </summary>
[JsonProperty("amount")]
public string Amount { get; set; }
/// <summary>
/// 资金凭证ID
/// </summary>
[JsonProperty("funds_voucher_no")]
public string FundsVoucherNo { get; set; }
/// <summary>
/// 资金流转发生时间
/// </summary>
[JsonProperty("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 门店ID打款动作存在该字段
/// </summary>
[JsonProperty("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 资金流入外部门店ID打款时存在该字段
/// </summary>
[JsonProperty("store_id")]
public string StoreId { get; set; }
/// <summary>
/// 资金类型 PAY/SETTLE/REFUND 对应 支付/打款/退款
/// </summary>
[JsonProperty("trans_type")]
public string TransType { get; set; }
}
}