SVN-Revision: r809
This commit is contained in:
tdx
2025-06-27 10:26:43 +00:00
parent 23e797a3f3
commit 30f66dfad4
2 changed files with 46 additions and 2 deletions
@@ -291,6 +291,11 @@ namespace Lskj.Control.Model
/// <value>The title label object.</value>
public string AutomaticSearchId;
/// <summary>
/// 关联账套id
/// </summary>
/// <value>The title label object.</value>
public string UnionZTid;
/// <summary>
/// 允许不选中行执行右键
/// </summary>
public bool AllowNullExec { get { return _allowNullExec; } }
@@ -433,4 +438,7 @@ namespace Lskj.Control.Model
if (item.Table.Columns.Contains("AllowNullExec"))
this._allowNullExec = string.IsNullOrWhiteSpace(item["AllowNullExec"] + "") ? false : "1".Equals(item["AllowNullExec"] + "");
if (item.Table.Columns.Contains("ResultSQL"))
this._resultSQL = ite
this._resultSQL = item["ResultSQL"] + "";
if (item.Table.Columns.Contains("ExecuteFirstCode"))
this.ExecuteFirstCode = item["ExecuteFirstCode"] + "";
if