SVN-Revision: r967
This commit is contained in:
cyf
2025-09-05 08:14:23 +00:00
parent 9d437b99c0
commit a0db6e538e
2 changed files with 19 additions and 2 deletions
+11 -1
View File
@@ -999,6 +999,14 @@ namespace Lskj.Model
/// pubadd点击附件管理,url拼接树节点id
/// </summary>
public bool AttachmentSelectNode;
/// <summary>
/// 扫码sql
/// </summary>
public string SweepCodeSql;
/// <summary>
///点击回车键,焦点单元格向下移动
/// </summary>
public bool EnterToNextRow;
#endregion
@@ -1172,4 +1180,6 @@ namespace Lskj.Model
this.PromptFontSize = rowItem.Table.Columns.Contains("PromptFontSize") && !string.IsNullOrEmpty(rowItem["PromptFontSize"] + "") ? Convert.ToInt32(rowItem["PromptFontSize"] + "") : 12;
this.PromptForceColor = rowItem.Table.Columns.Contains("PromptForceColor") ? rowItem["PromptForceColor"] + "" : "";
this.leftprimFile = rowItem.Table.Columns.Contains("leftprimFile") ? rowItem["leftprimFile"] + "" : "";
this.TreeKeyFieldName = rowItem.Table.Columns.Contains("TreeKeyFieldName") ?
this.TreeKeyFieldName = rowItem.Table.Columns.Contains("TreeKeyFieldName") ? rowItem["TreeKeyFieldName"] + "" : "";
this.TreeParentFieldName = rowItem.Table.Columns.Contains("TreeParentFieldName") ? rowItem["TreeParentFieldName"] + "" : "";
this.HideAttachBtn = rowItem.Table.Columns.Contains("HideAttachBt