using System;
using System.Collections.Generic;
using CncModels.Dto;
using CncModels.Dto.CollectLog;
using CncModels.Entity;
namespace CncRepository.Interface
{
///
/// 采集分析仓储接口
///
public interface ICollectAnalysisRepository
{
PagedResult GetAnalysisList(CollectAnalysisQuery query);
CollectAnalysisDetail GetAnalysisDetail(long id);
List GetAnalysisByRawLogId(long rawLogId);
long Create(CollectAnalysis entity);
int DeleteBeforeDate(DateTime date);
}
}