You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
2 years ago
|
using Dapper;
|
||
|
using System.Threading.Tasks;
|
||
|
using Znyc.Recruitment.Admin.Commons.IDbContext;
|
||
|
using Znyc.Recruitment.Admin.Commons.Repositories;
|
||
|
using Znyc.Recruitment.Admin.Security.Entitys;
|
||
|
using Znyc.Recruitment.Admin.Security.IRepositories;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.Repositories
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// </summary>
|
||
|
public class StatisticalRepository : BaseRepository<StatisticalEntity, long>, IStatisticalRepository
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// </summary>
|
||
|
public StatisticalRepository()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public StatisticalRepository(IDbContextCore dbContext) : base(dbContext)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// ��ȡǰһ������ͳ��
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public async Task<StatisticalEntity> GetStatisticalAsync()
|
||
|
{
|
||
|
string sql = @"SELECT * FROM sys_statistical ORDER BY CreatedTime DESC";
|
||
|
return await DapperConn.QueryFirstOrDefaultAsync<StatisticalEntity>(sql);
|
||
|
}
|
||
|
}
|
||
|
}
|