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