diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Organization/User/UserBLL.cs b/Learun.Framework.Ultimate V7/Learun.Application.Organization/User/UserBLL.cs index 28166cfc8..6b899a69a 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Organization/User/UserBLL.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.Organization/User/UserBLL.cs @@ -668,6 +668,7 @@ namespace Learun.Application.Organization companyId = item.F_CompanyId, departmentId = item.F_DepartmentId, name = item.F_RealName, + mobile=item?.F_Mobile }; string img = ""; if (!string.IsNullOrEmpty(item.F_HeadIcon)) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Organization/User/UserModel.cs b/Learun.Framework.Ultimate V7/Learun.Application.Organization/User/UserModel.cs index 911e39c91..c2bc11344 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Organization/User/UserModel.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.Organization/User/UserModel.cs @@ -26,5 +26,6 @@ /// public string img { get; set; } public string id { get; set; } + public string mobile { get; set; } } }