forked from ddrilling/AsbCloudServer
47 lines
1.7 KiB
C#
47 lines
1.7 KiB
C#
using AsbCloudApp.Data.SAUB;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.IO;
|
||
using System.Threading;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace AsbCloudApp.Services;
|
||
|
||
/// <summary>
|
||
/// Телеметрия САУБ
|
||
/// </summary>
|
||
public interface ITelemetryDataSaubService : ITelemetryDataService<TelemetryDataSaubDto>
|
||
{
|
||
/// <summary>
|
||
/// Получение телеметрии для РТК статистики
|
||
/// </summary>
|
||
/// <param name="idTelemetry"></param>
|
||
/// <param name="isBitOnBottom"></param>
|
||
/// <param name="geDate"></param>
|
||
/// <param name="leDate"></param>
|
||
/// <param name="take"></param>
|
||
/// <param name="token"></param>
|
||
/// <returns></returns>
|
||
Task<IEnumerable<TelemetryDataSaubDto>> Get(int idTelemetry, bool isBitOnBottom, DateTimeOffset geDate, DateTimeOffset leDate, int take, CancellationToken token);
|
||
|
||
/// <summary>
|
||
/// усредненная статистика по 1м за весь период
|
||
/// <para>
|
||
/// МЕДЛЕННЫЙ ЗАПРОС
|
||
/// </para>
|
||
/// </summary>
|
||
/// <param name="idTelemetry"></param>
|
||
/// <param name="token"></param>
|
||
/// <returns></returns>
|
||
Task<IEnumerable<TelemetryDataSaubStatDto>> GetTelemetryDataStatAsync(int idTelemetry, CancellationToken token);
|
||
|
||
/// <summary>
|
||
/// Получить упакованный csv файл
|
||
/// </summary>
|
||
/// <param name="idWell"></param>
|
||
/// <param name="beginDate"></param>
|
||
/// <param name="endDate"></param>
|
||
/// <param name="token"></param>
|
||
/// <returns></returns>
|
||
Task<Stream> GetZippedCsv(int idWell, DateTime beginDate, DateTime endDate, CancellationToken token);
|
||
} |