2024-07-01 17:02:18 +05:00
|
|
|
using AsbCloudApp.Data.ProcessMaps.Functions;
|
2024-06-26 17:48:15 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
|
2024-06-29 21:39:18 +05:00
|
|
|
public class ProcessMapPlanStaticMeasurementOutputTemplate : ITemplateParameters
|
2024-06-26 17:48:15 +05:00
|
|
|
{
|
|
|
|
public string SheetName => "Выход статического замера";
|
|
|
|
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
|
2024-06-29 21:39:18 +05:00
|
|
|
public string FileName => "ProcessMapPlanStaticMeasurementOutputTemplate.xlsx";
|
2024-06-26 17:48:15 +05:00
|
|
|
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
|
|
{
|
2024-07-01 17:02:18 +05:00
|
|
|
{ nameof(ProcessMapPlanStaticMeasurementOutputDto.Section), new Cell(1, typeof(string)) },
|
|
|
|
{ nameof(ProcessMapPlanStaticMeasurementOutputDto.DepthStart), new Cell(2, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanStaticMeasurementOutputDto.DepthEnd), new Cell(3, typeof(double)) },
|
2024-06-26 17:48:15 +05:00
|
|
|
|
2024-07-01 17:02:18 +05:00
|
|
|
{ nameof(ProcessMapPlanStaticMeasurementOutputDto.SignalWaitingTime), new Cell(4, typeof(double)) },
|
|
|
|
|
|
|
|
{ nameof(ProcessMapPlanStaticMeasurementOutputDto.Note), new Cell(5, typeof(string)) },
|
2024-06-26 17:48:15 +05:00
|
|
|
};
|
|
|
|
}
|