SVN-Revision: r859
This commit is contained in:
wyf
2025-07-16 02:53:14 +00:00
parent c21c084397
commit eb41c7c1e4
3 changed files with 207 additions and 6 deletions
+9 -1
View File
@@ -54,6 +54,10 @@ namespace Lskj.PubBomAlter
/// 验证的语句
/// </summary>
public string VerifySql;
/// <summary>
/// 反写确认按钮
/// </summary>
public string AllowFxBtn;
public override string[] OtherParams()
{
return this.Params;
@@ -74,8 +78,12 @@ namespace Lskj.PubBomAlter
{
base.ModuleCode = args[6];
}
if (args.Length > 7 && !string.IsNullOrWhiteSpace(args[7]))
{
SaveSql = args[7];
}
if (args.Length > 8 && !string.IsNullOrWhiteSpace(args[8]))
{
SaveSql = args[8];
AllowFxBtn = args[8] + "";
}