SVN-Revision: r348
This commit is contained in:
tdx
2025-03-19 05:31:59 +00:00
parent f83f23b52b
commit 21ff7e48c1
+5
View File
@@ -2500,6 +2500,7 @@ namespace Lskj.Model
public string FirstRowIndex = ""; public string FirstRowIndex = "";
public string SpecialValueIndex = ""; public string SpecialValueIndex = "";
public string SheetName = ""; public string SheetName = "";
public bool CustomerServiceApp = false;
public DynamicPubSpecialImport(string[] args) public DynamicPubSpecialImport(string[] args)
: base(args) : base(args)
{ {
@@ -2525,6 +2526,10 @@ namespace Lskj.Model
{ {
SheetName = args[9] + ""; SheetName = args[9] + "";
} }
if (args.Length >10 && !string.IsNullOrWhiteSpace(args[10]))
{
CustomerServiceApp = (args[10] + "").Equals("1");
}
} }
} }
/// <summary> /// <summary>