李昊 4 lat temu
rodzic
commit
f43009fbe0

+ 6 - 0
gx_api/GxPress/Model/GxPress.Entity/Group.cs

@@ -88,5 +88,11 @@ namespace GxPress.Entity
         /// <value></value>
         [DataColumn]
         public bool IsShow { get; set; }
+         /// <summary>
+        /// 历史用户头像
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public string HistoryAvatarUrl { get; set; }
     }
 }

+ 6 - 1
gx_api/GxPress/Model/GxPress.Entity/User.cs

@@ -237,7 +237,12 @@ namespace GxPress.Entity
         /// </summary>
         /// <value></value>
         [DataColumn]
-
         public string Press { get; set; }
+        /// <summary>
+        /// 历史用户头像
+        /// </summary>
+        /// <value></value>
+        [DataColumn]
+        public string HistoryAvatarUrl { get; set; }
     }
 }

+ 22 - 0
gx_api/GxPress/Model/GxPress.Entity/UserAvatar.cs

@@ -0,0 +1,22 @@
+using Datory.Annotations;
+
+namespace GxPress.Entity
+{
+    /// <summary>
+    /// 用户头像管理
+    /// </summary>
+    [DataTable("tede_user_avatar")]
+    public class UserAvatar : Datory.Entity
+    {
+        /// <summary>
+        /// 用户ID
+        /// </summary>
+        /// <value></value>
+        public int UserId { get; set; }
+        /// <summary>
+        /// 头像地址
+        /// </summary>
+        /// <value></value>
+        public string AvatarUrl { get; set; }
+    }
+}

+ 5 - 0
gx_api/GxPress/Model/GxPress.Result/App/Group/GroupDetailResult.cs

@@ -111,6 +111,11 @@ namespace GxPress.Result.App.Group
         /// </summary>
         /// <value></value>
         public bool IsShow { get; set; }
+        /// <summary>
+        /// 历史头像
+        /// </summary>
+        /// <value></value>
+        public string HistoryAvatarUrl { get; set; }
     }
     /// <summary>
     /// 用户小组列表

+ 6 - 0
gx_api/GxPress/Model/GxPress.Result/User/UserDetail.cs

@@ -209,6 +209,12 @@ namespace GxPress.Result.User
         /// <value></value>
 
         public string Press { get; set; }
+
+         /// <summary>
+        /// 历史头像
+        /// </summary>
+        /// <value></value>
+        public string HistoryAvatarUrl { get; set; }
     }
 }
 

+ 3 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/GroupRepository.cs

@@ -98,7 +98,10 @@ namespace GxPress.Repository.Implement
             if (!string.IsNullOrEmpty(request.Name))
                 group.Name = request.Name;
             if (!string.IsNullOrEmpty(request.AvatarUrl))
+            {
+                group.HistoryAvatarUrl = group.AvatarUrl;
                 group.AvatarUrl = StringUtils.RemoveDomain(request.AvatarUrl);
+            }
             if (!string.IsNullOrEmpty(request.Introduce))
                 group.Introduce = request.Introduce;
             if (!string.IsNullOrEmpty(request.LabelName))

+ 3 - 2
gx_api/GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -399,9 +399,10 @@ namespace GxPress.Repository.Implement
                 user.Signature = request.Signature;
             //用户头像
             if (!string.IsNullOrEmpty(request.AvatarUrl))
+            {
+                user.HistoryAvatarUrl = user.AvatarUrl;
                 user.AvatarUrl = StringUtils.RemoveDomain(request.AvatarUrl);
-            else
-                user.AvatarUrl = StringUtils.RemoveDomain(user.AvatarUrl);
+            }
             user.Email = request.Email;
             if (!string.IsNullOrWhiteSpace(request.Phone))
                 user.Phone = request.Phone;