Правки багов РТК

This commit is contained in:
Olga Nemt 2024-07-16 16:42:59 +05:00
parent 4bad2a6e59
commit c2a891836c
23 changed files with 5 additions and 7 deletions

View File

@ -8,9 +8,9 @@ public class ProcessMapPlanAntiCrashRotationTemplate : ITemplateParameters
{ {
public string SheetName => "Противоаварийное вращение"; public string SheetName => "Противоаварийное вращение";
public int HeaderRowsCount => 3; public int HeaderRowsCount => 2;
public string FileName => "ProcessMapPlanAntiCrashRotation.xlsx"; public string FileName => "ProcessMapPlanAnticrashRotation.xlsx";
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell> public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
{ {

View File

@ -5,7 +5,7 @@ namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlan
public class ProcessMapPlanDrillTestTemplate : ITemplateParameters public class ProcessMapPlanDrillTestTemplate : ITemplateParameters
{ {
public string SheetName => "Дрилтест"; public string SheetName => "DrillTest";
public int HeaderRowsCount => 2; public int HeaderRowsCount => 2;

View File

@ -8,7 +8,7 @@ public class ProcessMapPlanReamingRotorTemplate : ITemplateParameters
{ {
public string SheetName => "Проработка для ротора"; public string SheetName => "Проработка для ротора";
public int HeaderRowsCount => 2; public int HeaderRowsCount => 3;
public string FileName => "ProcessMapPlanReamingRotor.xlsx"; public string FileName => "ProcessMapPlanReamingRotor.xlsx";

View File

@ -5,7 +5,7 @@ namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlan
public class ProcessMapPlanShockTestTemplate : ITemplateParameters public class ProcessMapPlanShockTestTemplate : ITemplateParameters
{ {
public string SheetName => "Запись shock test"; public string SheetName => "ShockTest";
public int HeaderRowsCount => 2; public int HeaderRowsCount => 2;

View File

@ -17,10 +17,8 @@ public class ProcessMapPlanSwitchingOffThePumpTemplate : ITemplateParameters
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.Section), new Cell(1, typeof(string)) }, { nameof(ProcessMapPlanSwitchingOffThePumpDto.Section), new Cell(1, typeof(string)) },
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.DepthStart), new Cell(2, typeof(double)) }, { nameof(ProcessMapPlanSwitchingOffThePumpDto.DepthStart), new Cell(2, typeof(double)) },
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.DepthEnd), new Cell(3, typeof(double)) }, { nameof(ProcessMapPlanSwitchingOffThePumpDto.DepthEnd), new Cell(3, typeof(double)) },
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.Duration), new Cell(4, typeof(double)) }, { nameof(ProcessMapPlanSwitchingOffThePumpDto.Duration), new Cell(4, typeof(double)) },
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.ResidualPressureLimit), new Cell(5, typeof(double)) }, { nameof(ProcessMapPlanSwitchingOffThePumpDto.ResidualPressureLimit), new Cell(5, typeof(double)) },
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.Note), new Cell(6, typeof(string)) }, { nameof(ProcessMapPlanSwitchingOffThePumpDto.Note), new Cell(6, typeof(string)) },
}; };
} }