using DS.Module.Core;
using DS.WMS.Core.Sys.Dtos;
using DS.WMS.Core.Sys.Entity;
namespace DS.WMS.Core.Sys.Interface;
public interface ILogExceptionService
{
///
/// 异常日志列表
///
///
///
DataResult> GetExceptionLogList(PageRequest request);
///
/// 异常日志详情
///
///
///
DataResult GetExceptionLogInfo(string id);
}