lihao 4 years ago
parent
commit
6913672cc7

+ 1 - 1
gx_api/GxPress/Model/GxPress.Result/App/OftenContact/OftenContactResult.cs

@@ -93,6 +93,6 @@ namespace GxPress.Result.App.OftenContact
         /// 验证时间
         /// </summary>
         /// <value></value>
-        public string ConfirmationDate { get; set; }
+        public DateTime ConfirmationDate { get; set; }
     }
 }

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

@@ -136,13 +136,13 @@ namespace GxPress.Repository.Implement.AdminVerify
         /// </summary>
         /// <param name="userId"></param>
         /// <returns></returns>
-        public async Task<string> GetConfirmationDate(int userId)
+        public async Task<DateTime> GetConfirmationDate(int userId)
         {
             var query = Q.NewQuery();
             query.Select(nameof(Entity.AdminVerify.CreatedDate));
             query.Where(nameof(Entity.AdminVerify.AdminId), userId);
             query.OrderByDesc(nameof(Entity.AdminVerify.CreatedDate));
-            return await _repository.GetAsync<string>(query);
+            return await _repository.GetAsync<DateTime>(query);
         }
     }
 }

+ 2 - 1
gx_api/GxPress/Repository/GxPress.Repository.Interface/AdminVerify/IAdminVerifyRepository.cs

@@ -1,3 +1,4 @@
+using System;
 using System.Collections.Generic;
 using System.Threading.Tasks;
 using Datory;
@@ -69,7 +70,7 @@ namespace GxPress.Repository.Interface.AdminVerify
         /// </summary>
         /// <param name="userId"></param>
         /// <returns></returns>
-        Task<string> GetConfirmationDate(int userId);
+        Task<DateTime> GetConfirmationDate(int userId);
 
     }
 }

+ 0 - 2
gx_api/GxPress/Service/GxPress.Service.Implement/OftenContact/OftenContactService.Get.cs

@@ -63,8 +63,6 @@ namespace GxPress.Service.Implement.OftenContact
             var result = new OftenContactInfoGenericResult();
             result.OftenContactInfos = await GetOftenContacts(request);
             result.ConfirmationDate = await adminVerifyRepository.GetConfirmationDate(request.UserId);
-            if (!string.IsNullOrEmpty(result.ConfirmationDate))
-                result.ConfirmationDate = Convert.ToDateTime(result.ConfirmationDate).ToString("yyyy-MM-dd hh:mm:ss");
             return result;
         }