21 lines
475 B
C#
21 lines
475 B
C#
using DOAN.Model;
|
||
using DOAN.Model.Dto;
|
||
|
||
namespace DOAN.Service.Business.IBusinessService
|
||
{
|
||
/// <summary>
|
||
/// 追溯日志,错误日志,警告日志,调试日志service接口
|
||
/// </summary>
|
||
public interface ITraceLogService : IBaseService<TraceLog>
|
||
{
|
||
PagedInfo<TraceLogDto> GetList(TraceLogQueryDto parm);
|
||
|
||
TraceLog GetInfo(long Id);
|
||
|
||
TraceLog AddTraceLog(TraceLog parm);
|
||
|
||
int UpdateTraceLog(TraceLog parm);
|
||
|
||
}
|
||
}
|