fix(work): 修复部门 ID 值溢出错误问题

This commit is contained in:
Van
2022-01-28 05:12:12 +00:00
committed by RHQYZ
parent 0ace9d599b
commit 887abdf46f

View File

@@ -282,7 +282,7 @@
/// </summary>
[Newtonsoft.Json.JsonProperty("department")]
[System.Text.Json.Serialization.JsonPropertyName("department")]
public int[] DepartmentIdList { get; set; } = default!;
public long[] DepartmentIdList { get; set; } = default!;
/// <summary>
/// 获取或设置部门次序列表。
@@ -303,7 +303,7 @@
/// </summary>
[Newtonsoft.Json.JsonProperty("main_department")]
[System.Text.Json.Serialization.JsonPropertyName("main_department")]
public int? MainDepartmentId { get; set; }
public long? MainDepartmentId { get; set; }
/// <summary>
/// 获取或设置直属上级成员账号列表。
@@ -361,4 +361,4 @@
[System.Text.Json.Serialization.JsonPropertyName("external_profile")]
public Types.ExternalProfile? ExternalProfile { get; set; }
}
}
}