using Newtonsoft.Json;
|
|
namespace LifePayment.Domain
|
{
|
public class FundAccountBookQueryInput
|
{
|
/// <summary>
|
/// 商户会员的唯一标识,如果传入account_book_id此字段必传并比对一致性。
|
/// </summary>
|
[JsonProperty("merchant_user_id", NullValueHandling = NullValueHandling.Ignore)]
|
public string MerchantUserId
|
{
|
get;
|
set;
|
}
|
|
/// <summary>
|
/// 资金记账本的开通场景码 :SATF_FUND_BOOK
|
/// </summary>
|
[JsonProperty("scene_code", NullValueHandling = NullValueHandling.Ignore)]
|
public string SceneCode
|
{
|
get;
|
set;
|
}
|
|
/// <summary>
|
/// 记账账簿id
|
/// </summary>
|
[JsonProperty("account_book_id", NullValueHandling = NullValueHandling.Ignore)]
|
public string AccountBookId
|
{
|
get;
|
set;
|
}
|
|
/// <summary>
|
/// JSON格式,传递业务扩展参数 :{"agreement_no":"2019000000000"}
|
/// </summary>
|
[JsonProperty("ext_info", NullValueHandling = NullValueHandling.Ignore)]
|
public string ExtInfo
|
{
|
get;
|
set;
|
}
|
}
|
}
|