李昊 4 年之前
父節點
當前提交
008a7015bb

+ 5 - 0
gx_api/GxPress/Model/GxPress.Result/App/User/UserCountResult.cs

@@ -6,6 +6,11 @@ namespace GxPress.Result.App.User
     public class UserCountResult
     {
         /// <summary>
+        /// 收件箱
+        /// </summary>
+        /// <value></value>
+        public int InboxCount { get; set; }
+        /// <summary>
         /// 通知未读数量
         /// </summary>
         /// <value></value>

+ 4 - 4
gx_api/GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -840,15 +840,15 @@ namespace GxPress.Repository.Implement
         public async Task<UserCountResult> GetUserCountAsync(int userId)
         {
             var result = new UserCountResult();
-            string sql = $"select count(1) from tede_middle where FolderType={AllTypeConst.Notice.GetHashCode()} and UserId={userId} and MiddleId in (select SourceId from tede_addressee where UserId={userId} and IsRead=0 and IsDelete=0 and SourceType={AllTypeConst.Notice.GetHashCode()})";
+            string sql = $"select count(1) from tede_middle where FolderType={AllTypeConst.Inbox.GetHashCode()} and UserId={userId} and MiddleId in (select SourceId from tede_addressee where UserId={userId} and IsRead=0 and IsDelete=0 and SourceType={AllTypeConst.Notice.GetHashCode()})";
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);
             var connection = database.GetConnection();
             var noticeCount = await connection.ExecuteScalarAsync<int>(sql);
-            sql = $"select count(1) from tede_middle where FolderType={AllTypeConst.Missive.GetHashCode()} and UserId={userId} and MiddleId in (select SourceId from tede_addressee where UserId={userId} and SourceType={AllTypeConst.Missive.GetHashCode()} and IsDelete=0 and IsRead=0)";
+            sql = $"select count(1) from tede_middle where FolderType={AllTypeConst.Inbox.GetHashCode()} and UserId={userId} and MiddleId in (select SourceId from tede_addressee where UserId={userId} and SourceType={AllTypeConst.Missive.GetHashCode()} and IsDelete=0 and IsRead=0)";
             var missiveCount = await connection.ExecuteScalarAsync<int>(sql);
-            sql = $"SELECT count(1) FROM tede_admin_verify where AdminId={userId} and DisposeType=0";
-            noticeCount += await connection.ExecuteScalarAsync<int>(sql);
+            //sql = $"SELECT count(1) FROM tede_admin_verify where AdminId={userId} and DisposeType=0";
+           // noticeCount += await connection.ExecuteScalarAsync<int>(sql);
             result.noticeCount = noticeCount;
             result.missiveCount = missiveCount;
             return result;