From 018d282ed278a07e7efbe62e066057820a52bad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=B0=91=E5=B9=B4?= Date: Thu, 16 Oct 2025 15:50:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20=E6=94=B6=E9=9B=86?= =?UTF-8?q?=E6=96=87=E6=A1=A3=20=E8=AF=BB=E5=8F=96=E6=94=B6=E9=9B=86?= =?UTF-8?q?=E8=A1=A8=E7=AD=94=E6=A1=88=E8=BF=94=E5=9B=9E=E5=80=BC=20userid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CgibinWedoc/Form/CgibinWedocGetFormAnswerResponse.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/Form/CgibinWedocGetFormAnswerResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/Form/CgibinWedocGetFormAnswerResponse.cs index 6998984c..d411ae2e 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/Form/CgibinWedocGetFormAnswerResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/Form/CgibinWedocGetFormAnswerResponse.cs @@ -232,6 +232,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models [Newtonsoft.Json.JsonProperty("user_name")] [System.Text.Json.Serialization.JsonPropertyName("user_name")] public string UserName { get; set; } = default!; + + /// + /// 用户id,匿名填写不返回。 + /// + [Newtonsoft.Json.JsonProperty("userid")] + [System.Text.Json.Serialization.JsonPropertyName("userid")] + public string UserId { get; set; } = default!; /// /// 获取或设置外部联系人临时 ID。 -- Gitee