mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 05:13:17 +08:00
44 lines
1.5 KiB
C#
44 lines
1.5 KiB
C#
![]() |
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <para>表示 [POST] /secapi/mch/uploadmedia 接口的请求。</para>
|
|||
|
/// </summary>
|
|||
|
public class UploadMerchantMediaRequest : WechatTenpayRequest
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <i>(请忽略此字段)</i>
|
|||
|
/// </summary>
|
|||
|
[Newtonsoft.Json.JsonIgnore]
|
|||
|
[System.Text.Json.Serialization.JsonIgnore]
|
|||
|
public override string? MerchantId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// <i>(请忽略此字段)</i>
|
|||
|
/// </summary>
|
|||
|
[Newtonsoft.Json.JsonIgnore]
|
|||
|
[System.Text.Json.Serialization.JsonIgnore]
|
|||
|
public override string? AppId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置任务上传字节数组。
|
|||
|
/// </summary>
|
|||
|
[Newtonsoft.Json.JsonIgnore]
|
|||
|
[System.Text.Json.Serialization.JsonIgnore]
|
|||
|
public byte[] FileBytes { get; set; } = new byte[0];
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置任务上传文件名。如果不指定将由系统自动生成。
|
|||
|
/// </summary>
|
|||
|
[Newtonsoft.Json.JsonIgnore]
|
|||
|
[System.Text.Json.Serialization.JsonIgnore]
|
|||
|
public string? FileName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置任务上传文件摘要。如果不指定将由系统自动生成。
|
|||
|
/// </summary>
|
|||
|
[Newtonsoft.Json.JsonIgnore]
|
|||
|
[System.Text.Json.Serialization.JsonIgnore]
|
|||
|
public string? FileHash { get; set; }
|
|||
|
}
|
|||
|
}
|