forked from ddrilling/AsbCloudServer
23 lines
1.0 KiB
C#
23 lines
1.0 KiB
C#
using AsbCloudApp.Data.ProcessMaps.Functions;
|
|
using AsbCloudApp.Data.ProcessMaps.Operations;
|
|
using AsbCloudDb.Model.ProcessMapPlan.Operations;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
public class ProcessMapPlanRotorRpmAccelerationTemplate : ITemplateParameters
|
|
{
|
|
public string SheetName => "Выход на обороты перед ротором";
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
public string FileName => "ProcessMapPlanRotorRpmAccelerationTemplate.xlsx";
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
{
|
|
{ nameof(ProcessMapPlanRotorRpmAccelerationDto.Section), new Cell(1, typeof(string)) },
|
|
{ nameof(ProcessMapPlanRotorRpmAccelerationDto.DepthStart), new Cell(2, typeof(double)) },
|
|
{ nameof(ProcessMapPlanRotorRpmAccelerationDto.DepthEnd), new Cell(3, typeof(double)) },
|
|
{ nameof(ProcessMapPlanRotorRpmAccelerationDto.Note), new Cell(11, typeof(string)) },
|
|
};
|
|
} |