SVN-Revision: r850
This commit is contained in:
wyf
2025-07-10 02:40:40 +00:00
parent 5c3a1675e1
commit 280cc36dea
4 changed files with 171 additions and 82 deletions
+1 -29
View File
@@ -78,32 +78,4 @@ namespace Lskj.PubBomAlter
{
SaveSql = args[8];
}
if (args.Length > 9 && !string.IsNullOrWhiteSpace(args[9]))
{
VerifySql = args[9];
}
if (args.Length > 10)
{
this.Params = new string[args.Length];
for (int i = 10; i < args.Length; i++)
{
Params[i - 10] = args[i];
}
}
if (!string.IsNullOrEmpty(args[args.Length - 1]))
{
try
{
JObject rowObject = JsonConvert.DeserializeObject<JObject>(args[args.Length - 1]);
JArray jArray = new JArray();
jArray.Add(rowObject);
DataTable dataTable = JsonConvert.DeserializeObject<DataTable>(JsonConvert.SerializeObject(jArray));
this.MaintabFocusedRow = dataTable.Rows[0];
}
catch (Exception)
{
}
}
}
}
}