|
@@ -244,6 +244,7 @@ namespace TEAMModelBI.Controllers.DingDingStruc
|
|
mail = item.mail,
|
|
mail = item.mail,
|
|
picture = item.picture,
|
|
picture = item.picture,
|
|
roles = item.roles,
|
|
roles = item.roles,
|
|
|
|
+ joinTime = item.joinTime,
|
|
permissions = item.permissions,
|
|
permissions = item.permissions,
|
|
handleRoles = !string.IsNullOrEmpty($"{item.roles}") ? new List<string>(item.roles.Split(",")) : new List<string>(),
|
|
handleRoles = !string.IsNullOrEmpty($"{item.roles}") ? new List<string>(item.roles.Split(",")) : new List<string>(),
|
|
handlePermissions = !string.IsNullOrEmpty($"{item.permissions}") ? new List<string>(item.permissions.Split(",")) : new List<string>(),
|
|
handlePermissions = !string.IsNullOrEmpty($"{item.permissions}") ? new List<string>(item.permissions.Split(",")) : new List<string>(),
|
|
@@ -285,6 +286,7 @@ namespace TEAMModelBI.Controllers.DingDingStruc
|
|
mail = item.mail,
|
|
mail = item.mail,
|
|
picture = item.picture,
|
|
picture = item.picture,
|
|
roles = item.roles,
|
|
roles = item.roles,
|
|
|
|
+ joinTime = item.joinTime,
|
|
permissions = item.permissions,
|
|
permissions = item.permissions,
|
|
handleRoles = !string.IsNullOrEmpty($"{item.roles}") ? new List<string>(item.roles.Split(",")) : new List<string>(),
|
|
handleRoles = !string.IsNullOrEmpty($"{item.roles}") ? new List<string>(item.roles.Split(",")) : new List<string>(),
|
|
handlePermissions = !string.IsNullOrEmpty($"{item.permissions}") ? new List<string>(item.permissions.Split(",")) : new List<string>(),
|
|
handlePermissions = !string.IsNullOrEmpty($"{item.permissions}") ? new List<string>(item.permissions.Split(",")) : new List<string>(),
|
|
@@ -628,6 +630,7 @@ namespace TEAMModelBI.Controllers.DingDingStruc
|
|
mail = item.mail,
|
|
mail = item.mail,
|
|
picture = item.picture,
|
|
picture = item.picture,
|
|
roles = item.roles,
|
|
roles = item.roles,
|
|
|
|
+ joinTime = item.joinTime,
|
|
permissions = item.permissions,
|
|
permissions = item.permissions,
|
|
handleRoles = !string.IsNullOrEmpty($"{item.roles}") ? new List<string>(item.roles.Split(",")) : new List<string>(),
|
|
handleRoles = !string.IsNullOrEmpty($"{item.roles}") ? new List<string>(item.roles.Split(",")) : new List<string>(),
|
|
handlePermissions = !string.IsNullOrEmpty($"{item.permissions}") ? new List<string>(item.permissions.Split(",")) : new List<string>(),
|
|
handlePermissions = !string.IsNullOrEmpty($"{item.permissions}") ? new List<string>(item.permissions.Split(",")) : new List<string>(),
|
|
@@ -914,6 +917,7 @@ namespace TEAMModelBI.Controllers.DingDingStruc
|
|
mail = respUser.mail,
|
|
mail = respUser.mail,
|
|
picture = respUser.picture,
|
|
picture = respUser.picture,
|
|
roles = respUser.roles,
|
|
roles = respUser.roles,
|
|
|
|
+ joinTime = respUser.joinTime,
|
|
permissions = respUser.permissions,
|
|
permissions = respUser.permissions,
|
|
handleRoles = !string.IsNullOrEmpty($"{respUser.roles}") ? new List<string>(respUser.roles.Split(",")) : new List<string>(),
|
|
handleRoles = !string.IsNullOrEmpty($"{respUser.roles}") ? new List<string>(respUser.roles.Split(",")) : new List<string>(),
|
|
handlePermissions = !string.IsNullOrEmpty($"{respUser.permissions}") ? new List<string>(respUser.permissions.Split(",")) : new List<string>()
|
|
handlePermissions = !string.IsNullOrEmpty($"{respUser.permissions}") ? new List<string>(respUser.permissions.Split(",")) : new List<string>()
|
|
@@ -1140,6 +1144,7 @@ namespace TEAMModelBI.Controllers.DingDingStruc
|
|
public string mail { get; set; }
|
|
public string mail { get; set; }
|
|
public string picture { get; set; }
|
|
public string picture { get; set; }
|
|
public string roles { get; set; }
|
|
public string roles { get; set; }
|
|
|
|
+ public long joinTime { get; set; }
|
|
public string permissions { get; set; }
|
|
public string permissions { get; set; }
|
|
public List<string> handleRoles { get; set; }
|
|
public List<string> handleRoles { get; set; }
|
|
public List<string> handlePermissions { get; set; }
|
|
public List<string> handlePermissions { get; set; }
|