feat(work): 随官方更新文件防泄漏相关接口模型

This commit is contained in:
Fu Diwei 2023-12-02 15:53:10 +08:00
parent f524eba7d2
commit 506f9e6cff
2 changed files with 28 additions and 2 deletions

View File

@ -94,6 +94,20 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models
[Newtonsoft.Json.JsonProperty("applicant_name")]
[System.Text.Json.Serialization.JsonPropertyName("applicant_name")]
public string? ApplicantName { get; set; }
/// <summary>
/// 获取或设置设备类型。
/// </summary>
[Newtonsoft.Json.JsonProperty("device_type")]
[System.Text.Json.Serialization.JsonPropertyName("device_type")]
public int? DeviceType { get; set; }
/// <summary>
/// 获取或设置设备编码。
/// </summary>
[Newtonsoft.Json.JsonProperty("device_code")]
[System.Text.Json.Serialization.JsonPropertyName("device_code")]
public string? DeviceCode { get; set; }
}
}

View File

@ -21,9 +21,21 @@
"corp_name": "十分科技"
},
"operation": {
"type": 113
"type": 10001
},
"file_info": "通过zhangsan的链接下载了1234567890.jpg"
"file_info": "通过zhangsan的链接下载了1234567890.jpg",
"applicant_name": "张三"
},
{
"time": 16666666666,
"userid": "lisi",
"operation": {
"type": 103,
"source": 401
},
"file_info": "通过zhangsan的链接下载了1234567890.jpg",
"device_type": 1,
"device_code": "owM2ovo"
}
]
}