Commit e50ccb07 by ruyun.zhang

增加以”9.“开头的识别定制纵向数据,仅保存不做处理

parent 9a41ec4b
...@@ -158,6 +158,10 @@ public enum SheetType ...@@ -158,6 +158,10 @@ public enum SheetType
/// <summary> 抽取数据,不写入 </summary> /// <summary> 抽取数据,不写入 </summary>
[Description("抽取数据,不写入")] [Description("抽取数据,不写入")]
OnlyExtract = 102, OnlyExtract = 102,
/// <summary> 抽取数据,不写入 </summary>
[Description("抽取数据,不写入")]
ReadOnly = 91,
} }
/// <summary> /// <summary>
......
...@@ -131,6 +131,9 @@ public SheetType GetSheetType(string sheetName) ...@@ -131,6 +131,9 @@ public SheetType GetSheetType(string sheetName)
else if (sheetName.StartsWith("6.9")) // 其他管理绩效 else if (sheetName.StartsWith("6.9")) // 其他管理绩效
return SheetType.PersonOtherManagePerforFee; return SheetType.PersonOtherManagePerforFee;
else if (sheetName.StartsWith("9.")) // lcr定制纵向数据,仅保存不做处理
return SheetType.ReadOnly;
return SheetType.Unidentifiable; return SheetType.Unidentifiable;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment