李昊 4 years ago
parent
commit
23e4aa721e

BIN
gx_api/GxPress/.DS_Store


BIN
gx_api/GxPress/Api/.DS_Store


BIN
gx_api/GxPress/Api/GxPress.Api/.DS_Store


+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/AdminVerify/AdminVerifyRepository.cs

@@ -57,7 +57,7 @@ namespace GxPress.Repository.Implement.AdminVerify
             foreach (var item in adminVerifys)
             {
                 var guId = Guid.NewGuid().ToString();
-                var createdDate = DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss");
+                var createdDate = DateTime.Now.ToString();
                 sqlValue += $@"('{guId}','{createdDate}','{createdDate}',{item.VerifyType.GetHashCode()},{item.DisposeType},{item.AdminId},{item.UserId},{item.SourceId},'{item.Name}','{item.AvatarUrl}','{item.Remark}',{item.SourceType},'{item.SourceName}','{item.IsDelete}'),";
             }
             sql = sql + sqlValue.Remove(sqlValue.Length - 1, 1);

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/Group/UserGroupCategoryRepository.cs

@@ -60,7 +60,7 @@ namespace GxPress.Repository.Implement.Group
                     foreach (var item in request)
                     {
                         var guid = System.Guid.NewGuid().ToString();
-                        var createdDateValue = DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss");
+                        var createdDateValue = DateTime.Now.ToString();
                         sql += $@"('{guid}','{createdDateValue}',{item.GroupCategroyId},{userId},'{createdDateValue}'),";
                     }
                     sql = sql.Remove(sql.Length - 1, 1);

+ 2 - 2
gx_api/GxPress/Service/GxPress.Service.Implement/Note/NoteService.cs

@@ -244,7 +244,7 @@ namespace GxPress.Service.Implement.Note
                 analyzeRequest.CommentId = 0;
                 analyzeRequest.SourceId = request.FolderId;
                 analyzeRequest.UserId = request.UserId;
-                analyzeRequest.TypeValue = AllTypeConst.NoteFolder.GetHashCode();
+                analyzeRequest.TypeValue = AllTypeConst.TopicNote.GetHashCode();
                 result.IsCollect = await _analyzeService.ExistsSourceUserAsync(analyzeRequest);
                 analyzeRequest.AnalyzeType = 4;
                 result.RetransmissionCount = await _analyzeService.RetransmissionCountAsync(analyzeRequest);
@@ -732,7 +732,7 @@ namespace GxPress.Service.Implement.Note
             }
             result.IsDraft = await _noteRepository.IsExistsDraftAsync(request.UserId, false);
             result.DraftId = await _noteRepository.GetNoteIdByDraftAsync(request.UserId, false);
-            result.DraftCount=await _noteRepository.GetDraftCountAsync(request.UserId,false);
+            result.DraftCount = await _noteRepository.GetDraftCountAsync(request.UserId, false);
             return result;
         }
     }