曲线回读+测试报告导出前期工作
This commit is contained in:
26
Service/Interface/ITestReportService.cs
Normal file
26
Service/Interface/ITestReportService.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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<TestReportEntity>
|
||||
{
|
||||
/// <summary>
|
||||
/// 根据TestRoundId获符合的测试步骤
|
||||
/// </summary>
|
||||
/// <param name="TestRoundId">TestRoundId</param>
|
||||
/// <returns>返回符合的TestReportEntity列表</returns>
|
||||
Task<Result<List<TestReportEntity>>> GetByTestRoundIdAsync(Guid TestRoundId);
|
||||
|
||||
/// <summary>
|
||||
/// 根据 TestRoundId 分组,获取唯一记录并按分组统计最大与最小时间
|
||||
/// </summary>
|
||||
Task<Result<IList<TestReportModel>>> GetFilterList();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user