|
|
|
using DS.Module.Core;
|
|
|
|
using DS.Module.Core.Extensions;
|
|
|
|
using DS.Module.Core.Log;
|
|
|
|
using DS.Module.SqlSugar;
|
|
|
|
using DS.Module.UserModule;
|
|
|
|
using DS.WMS.Core.System.Dtos;
|
|
|
|
using DS.WMS.Core.System.Entity;
|
|
|
|
using DS.WMS.Core.System.Interface;
|
|
|
|
using Mapster;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.System.Method;
|
|
|
|
|
|
|
|
public class LogVisitService : ILogVisitService
|
|
|
|
{
|
|
|
|
private readonly IServiceProvider _serviceProvider;
|
|
|
|
private readonly ISqlSugarClient db;
|
|
|
|
private readonly IUser user;
|
|
|
|
private readonly ISaasDbService saasService;
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="serviceProvider"></param>
|
|
|
|
public LogVisitService(IServiceProvider serviceProvider)
|
|
|
|
{
|
|
|
|
_serviceProvider = serviceProvider;
|
|
|
|
db = _serviceProvider.GetRequiredService<ISqlSugarClient>();
|
|
|
|
user = _serviceProvider.GetRequiredService<IUser>();
|
|
|
|
saasService = _serviceProvider.GetRequiredService<ISaasDbService>();
|
|
|
|
}
|
|
|
|
|
|
|
|
public DataResult<List<VisitLogRes>> GetVisitLogList(PageRequest request)
|
|
|
|
{
|
|
|
|
//序列化查询条件
|
|
|
|
var whereList = db.ConfigQuery.Context.Utilities.JsonToConditionalModels(request.QueryCondition);
|
|
|
|
var data = saasService.GetLogDb().Queryable<SysLogVisit>().Filter(null,true)
|
|
|
|
.Where(whereList)
|
|
|
|
.Select<VisitLogRes>().ToQueryPage(request.PageCondition);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
public DataResult<VisitLogRes> GetVisitLogInfo(string id)
|
|
|
|
{
|
|
|
|
var data = saasService.GetLogDb().Queryable<SysLogVisit>().Filter(null,true)
|
|
|
|
.Where(a => a.Id == long.Parse(id))
|
|
|
|
.Select<VisitLogRes>()
|
|
|
|
.First();
|
|
|
|
return DataResult<VisitLogRes>.Success(data,MultiLanguageConst.DataQuerySuccess);
|
|
|
|
}
|
|
|
|
}
|