forked from ddrilling/AsbCloudServer
17 lines
559 B
C#
17 lines
559 B
C#
namespace AsbCloudInfrastructure.Services.WellOperationImport.Constants;
|
|
|
|
public static class DefaultTemplateInfo
|
|
{
|
|
public const string SheetNamePlan = "План";
|
|
public const string SheetNameFact = "Факт";
|
|
|
|
public const int HeaderRowsCount = 1;
|
|
public const int ColumnSection = 1;
|
|
public const int ColumnCategory = 2;
|
|
public const int ColumnCategoryInfo = 3;
|
|
public const int ColumnDepthStart = 4;
|
|
public const int ColumnDepthEnd = 5;
|
|
public const int ColumnDate = 6;
|
|
public const int ColumnDuration = 7;
|
|
public const int ColumnComment = 8;
|
|
} |