2024-07-01 17:02:18 +05:00
|
|
|
using AsbCloudApp.Data.ProcessMaps.Functions;
|
2024-06-26 11:42:10 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
|
2024-06-29 23:24:53 +05:00
|
|
|
public class ProcessMapPlanShockTestTemplate : ITemplateParameters
|
2024-06-26 11:42:10 +05:00
|
|
|
{
|
2024-07-16 16:42:59 +05:00
|
|
|
public string SheetName => "ShockTest";
|
2024-06-26 11:42:10 +05:00
|
|
|
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
|
2024-07-08 13:09:13 +05:00
|
|
|
public string FileName => "ProcessMapPlanShockTest.xlsx";
|
2024-06-26 11:42:10 +05:00
|
|
|
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
|
|
{
|
2024-07-01 17:02:18 +05:00
|
|
|
{ nameof(ProcessMapPlanShockTestDto.Section), new Cell(1, typeof(string)) },
|
|
|
|
{ nameof(ProcessMapPlanShockTestDto.DepthStart), new Cell(2, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanShockTestDto.DepthEnd), new Cell(3, typeof(double)) },
|
2024-06-26 11:42:10 +05:00
|
|
|
|
2024-07-01 17:02:18 +05:00
|
|
|
{ nameof(ProcessMapPlanShockTestDto.StickSlip), new Cell(4, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanShockTestDto.Whirl), new Cell(5, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanShockTestDto.AxialVibrations), new Cell(6, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanShockTestDto.CombinedVibrations), new Cell(7, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanShockTestDto.WeightOnBitMin), new Cell(8, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanShockTestDto.RpmMin), new Cell(9, typeof(double)) },
|
|
|
|
|
|
|
|
{ nameof(ProcessMapPlanShockTestDto.Note), new Cell(10, typeof(string)) },
|
2024-06-26 11:42:10 +05:00
|
|
|
};
|
|
|
|
}
|