diff --git a/插件库/Lskj.Model/DynamicModel.cs b/插件库/Lskj.Model/DynamicModel.cs
index c9cfd47..c0df4e1 100644
--- a/插件库/Lskj.Model/DynamicModel.cs
+++ b/插件库/Lskj.Model/DynamicModel.cs
@@ -2500,7 +2500,18 @@ namespace Lskj.Model
public string FirstRowIndex = "";
public string SpecialValueIndex = "";
public string SheetName = "";
+ ///
+ /// 读取筛选条件
+ ///
+ public string ReadTableCond = "";
+ ///
+ /// 忽略合并明细列标题行
+ ///
public bool CustomerServiceApp = false;
+ ///
+ /// 显示模式,如果为1则隐藏配置界面
+ ///
+ public string ShowType = "";
public DynamicPubSpecialImport(string[] args)
: base(args)
{
@@ -2526,9 +2537,17 @@ namespace Lskj.Model
{
SheetName = args[9] + "";
}
- if (args.Length >10 && !string.IsNullOrWhiteSpace(args[10]))
+ if (args.Length > 10 && !string.IsNullOrWhiteSpace(args[10]))
{
- CustomerServiceApp = (args[10] + "").Equals("1");
+ ReadTableCond = args[10] + "";
+ }
+ if (args.Length > 11 && !string.IsNullOrWhiteSpace(args[11]))
+ {
+ CustomerServiceApp = (args[11] + "").Equals("1");
+ }
+ if (args.Length > 12 && !string.IsNullOrWhiteSpace(args[12]))
+ {
+ ShowType = args[12] + "";
}
}
}