mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
feat(work): 随官方更新文件防泄漏接口模型
This commit is contained in:
parent
394ba951ef
commit
905103a611
@ -88,6 +88,20 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
[System.Text.Json.Serialization.JsonPropertyName("file_info")]
|
||||
public string? FileInfo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置文件大小(单位:字节)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("file_size")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("file_size")]
|
||||
public int? FileSize { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置文文件的 MD5 值。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("file_md5")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("file_md5")]
|
||||
public string? FileMd5 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置申请人姓名。
|
||||
/// </summary>
|
||||
|
@ -11,7 +11,9 @@
|
||||
"type": 101,
|
||||
"source": 401
|
||||
},
|
||||
"file_info": "1234567890.jpg"
|
||||
"file_info": "1234567890.jpg",
|
||||
"file_size": 405842,
|
||||
"file_md5": "gmgi32jginniboamgoge"
|
||||
},
|
||||
{
|
||||
"time": 16666666666,
|
||||
|
Loading…
Reference in New Issue
Block a user