SVN-Revision: r350
This commit is contained in:
wyf
2025-03-19 06:48:06 +00:00
parent 9ff9bdbeae
commit 31518c8807
+20 -1
View File
@@ -2500,7 +2500,18 @@ namespace Lskj.Model
public string FirstRowIndex = ""; public string FirstRowIndex = "";
public string SpecialValueIndex = ""; public string SpecialValueIndex = "";
public string SheetName = ""; public string SheetName = "";
/// <summary>
/// 读取筛选条件
/// </summary>
public string ReadTableCond = "";
/// <summary>
/// 忽略合并明细列标题行
/// </summary>
public bool CustomerServiceApp = false; public bool CustomerServiceApp = false;
/// <summary>
/// 显示模式,如果为1则隐藏配置界面
/// </summary>
public string ShowType = "";
public DynamicPubSpecialImport(string[] args) public DynamicPubSpecialImport(string[] args)
: base(args) : base(args)
{ {
@@ -2528,7 +2539,15 @@ namespace Lskj.Model
} }
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] + "";
} }
} }
} }