feat: 新增用户昨天新增数量

This commit is contained in:
橙子
2024-01-04 20:58:45 +08:00
parent b691ce19f7
commit 599d33b822
5 changed files with 20 additions and 6 deletions

View File

@@ -19,6 +19,6 @@ namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Article
public Guid ArticleParentId { get; set; }= Guid.Empty;
public ArticleImportTypeEnum ImportType { get; set; } = ArticleImportTypeEnum.Defalut;
public ArticleImportTypeEnum ImportType { get; set; } = ArticleImportTypeEnum.Default;
}
}

View File

@@ -18,5 +18,10 @@ namespace Yi.Framework.Bbs.Application.Contracts.Dtos.BbsUser
/// 在线人数
/// </summary>
public long OnlineNumber { get; set; }
/// <summary>
/// 昨天新增用户
/// </summary>
public long YesterdayNewUser { get; set; }
}
}