|
@@ -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;
|