2021-05-10 15:30:00 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [GET] /ecommerce/bill/fundflowbill 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class GetEcommerceBillFundflowBillRequest : WechatTenpayRequest
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置账单日期(格式:yyyy-MM-dd)。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
|
public string BillDateString { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置资金账户类型。
|
2021-06-10 15:43:55 +08:00
|
|
|
|
/// <para>默认值:ALL</para>
|
2021-05-10 15:30:00 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
|
public string AccountType { get; set; } = "ALL";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置压缩类型。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
|
public string? TarType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置加密算法。
|
2021-09-24 10:42:12 +08:00
|
|
|
|
/// <para>默认值:<see cref="Constants.EncryptionAlgorithms.AEAD_AES_256_GCM"/></para>
|
2021-05-10 15:30:00 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
|
|
|
public string Algorithm { get; set; } = Constants.EncryptionAlgorithms.AEAD_AES_256_GCM;
|
|
|
|
|
}
|
|
|
|
|
}
|