SVN-Revision: r269
This commit is contained in:
tdx
2025-02-14 09:56:42 +00:00
parent 9fb42a6e97
commit b2f0adf417
+3 -47
View File
@@ -432,8 +432,8 @@ namespace Lskj.Model
{
base.ModuleCode = args[5];
}
this.IsView = args[6];
this.ObjectId = args[7];
this.IsView = args.Length > 6 ? args[6] : string.Empty;
this.ObjectId = args.Length > 7 ? args[7] : string.Empty;
this.ParentKey = args.Length > 8 ? args[8] : string.Empty;
this.ParentValue = args.Length > 9 ? args[9] : string.Empty;
this.ControlSql = args.Length > 10 && !string.IsNullOrWhiteSpace(args[10]) ? args[10].TrimStart('#') : string.Empty;
@@ -2546,48 +2546,4 @@ namespace Lskj.Model
public string idValue;
/// <summary>
/// 配置关联sql
/// </summary>
/// <param name="args"></param>
public string ControlSql;
public DynamicPubInvokeExeModel(string[] args)
: base(args)
{
if (!string.IsNullOrEmpty(args[5]))
{
base.ModuleId = Convert.ToInt32(args[5]);
}
if (args.Length > 5)
{
this.ModuleCode = args[6];
}
if (args.Length > 6)
{
this.ControlSql = args[7];
}
}
}
/// <summary>
/// 凭证推送参数
/// </summary>
public class DynamicVoucher : DynamicModel
{
/// <summary>
/// planListid
/// </summary>
public string planlistid;
public DynamicVoucher(string[] args)
: base(args)
{
//if (!string.IsNullOrEmpty(args[5]))
//{
// base.ModuleCode = args[5];
//}
}
}
}
/// </su