mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 02:29:40 +08:00
fix(work): 修复部门 ID 值溢出错误问题
This commit is contained in:
@@ -282,7 +282,7 @@
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[Newtonsoft.Json.JsonProperty("department")]
|
[Newtonsoft.Json.JsonProperty("department")]
|
||||||
[System.Text.Json.Serialization.JsonPropertyName("department")]
|
[System.Text.Json.Serialization.JsonPropertyName("department")]
|
||||||
public int[] DepartmentIdList { get; set; } = default!;
|
public long[] DepartmentIdList { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取或设置部门次序列表。
|
/// 获取或设置部门次序列表。
|
||||||
@@ -303,7 +303,7 @@
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[Newtonsoft.Json.JsonProperty("main_department")]
|
[Newtonsoft.Json.JsonProperty("main_department")]
|
||||||
[System.Text.Json.Serialization.JsonPropertyName("main_department")]
|
[System.Text.Json.Serialization.JsonPropertyName("main_department")]
|
||||||
public int? MainDepartmentId { get; set; }
|
public long? MainDepartmentId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取或设置直属上级成员账号列表。
|
/// 获取或设置直属上级成员账号列表。
|
||||||
|
Reference in New Issue
Block a user