@@ -40,12 +40,12 @@ namespace GxPress.Api
if (context.User != null)
{
var ty = _contextAccessor?.HttpContext?.User?.FindFirst(ClaimTypes.Role);
- if (ty != null && ty.Value.Equals("Admin"))
+ if (ty != null && !ty.Value.Equals("Admin"))
var userId = _contextAccessor?.HttpContext?.User?.FindFirst(ClaimTypes.NameIdentifier);
if (int.TryParse(userId?.Value, out var accountId))
- await _apiLogService.DataSave(context, 1, accountId);
+ await _apiLogService.DataSave(context, 1, accountId);
}
// watch.Stop();
@@ -224,6 +224,13 @@ namespace GxPress.Entity
/// 登录时间
/// </summary>
/// <value></value>
+ [DataColumn]
public DateTime LoginTime { get; set; }
+ /// <summary>
+ /// 省份
+ /// </summary>
+ /// <value></value>
+ public string Province { get; set; }
@@ -14,7 +14,7 @@ namespace GxPress.Entity.Visit
[DataColumn]
public int UserId { get; set; }
/// <summary>
- /// 类型ID 类型1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8 会议详情
+ /// 类型ID 文章100,话题2,收藏3,笔记4,通知5,站内信6,小组7,收藏文件夹12,笔记文件夹13,工作流审批14,文件300,图片301,会议纪要8,会议详情500,财务报表601,人事报表602,出版报表603,书籍20,课程30,音频40,期刊50,视频60,名栏90,公众号110,刊期120
@@ -89,11 +89,7 @@ namespace GxPress.Entity.tede2.Media
public int Sort { get; set; }
- /// <summary>
- /// 文章阅读量
- /// </summary>
- [DataColumn]
- public int ReadCount { get; set; }
+
/// 是否置顶
@@ -225,11 +221,34 @@ namespace GxPress.Entity.tede2.Media
public string JournalsYear { get; set; }
/// 刊期期数
public int JournalsCategory { get; set; }
+ /// 收藏次数
+ public int CollectCount { get; set; }
+ /// 转发数量
+ public int RetransmissionCount { get; set; }
+ /// 浏览量
+ public int ReadCount { get; set; }
+ /// 评论数量
+ public int CommentCount { get; set; }
@@ -3,7 +3,7 @@ using System.ComponentModel;
namespace GxPress.EnumConst
- /// 文件夹类型 1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8 会议详情 14工作流审批 300 文件 400会议纪要
+ /// 文件夹类型 文章100,话题2,收藏3,笔记4,通知5,站内信6,小组7,收藏文件夹12,笔记文件夹13,工作流审批14,文件300,图片301,会议纪要8,会议详情500,财务报表601,人事报表602,出版报表603,书籍20,课程30,音频40,期刊50,视频60,名栏90,公众号110,刊期120
public enum AllTypeConst
@@ -0,0 +1,20 @@
+using GxPress.Repository.Interface;
+using GxPress.Service.Interface.PlatformData;
+namespace GxPress.Service.Implement.PlatformData
+{
+ public class PlatformDataService : IPlatformDataService
+ {
+ private readonly IUserRepository userRepository;
+ public PlatformDataService(IUserRepository userRepository)
+ this.userRepository = userRepository;
+ }
+ // public async Task<PlatformDataResult> GetPlatformDataAsync()
+ // {
+ // var result = new PlatformDataResult();
+ // result.PlatformOperationDataResult = new PlatformOperationDataResult();
+ // }
+}
@@ -0,0 +1,7 @@
+namespace GxPress.Service.Interface.PlatformData
+ public interface IPlatformDataService:IService