using Model; using Model.Entity; using Model.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Service.Interface { public interface ITestReportService:IBaseService { /// /// 根据TestRoundId获符合的测试步骤 /// /// TestRoundId /// 返回符合的TestReportEntity列表 Task>> GetByTestRoundIdAsync(Guid TestRoundId); /// /// 根据 TestRoundId 分组,获取唯一记录并按分组统计最大与最小时间 /// Task>> GetFilterList(); } }