提交当前本机最新程序

This commit is contained in:
cyf
2026-07-18 15:32:50 +08:00
parent 6be6607a40
commit bcf9f1b58c
9 changed files with 251 additions and 113 deletions
+10
View File
@@ -467,6 +467,14 @@ namespace Lskj.Model
/// 单据横向模式
/// </summary>
public bool HorizontalMode;
/// <summary>
/// 树表格老版节点号模式
/// </summary>
public bool OldNodeRules;
/// <summary>
/// 新版树节点位数(默认2位,最小2位)
/// </summary>
public int TreeNumberNodes;
/// <summary>
@@ -575,6 +583,8 @@ namespace Lskj.Model
this.SourceMainPushPullHide = rowItem.Table.Columns.Contains("SourceMainPushPullHide") ? "1".Equals(rowItem["SourceMainPushPullHide"] + "") : false;
this.SelectSourceColor = rowItem.Table.Columns.Contains("SelectSourceColor") ? rowItem["SelectSourceColor"] + "" : "";
this.HorizontalMode = rowItem.Table.Columns.Contains("HorizontalMode") ? "1".Equals(rowItem["HorizontalMode"] + "") : false;
this.OldNodeRules = rowItem.Table.Columns.Contains("OldNodeRules") ? "1".Equals(rowItem["OldNodeRules"] + "") : false;
this.TreeNumberNodes = rowItem.Table.Columns.Contains("MessageRefreshTime") && !string.IsNullOrEmpty(rowItem["MessageRefreshTime"] + "") ? Convert.ToInt32(rowItem["MessageRefreshTime"] + "")>2? Convert.ToInt32(rowItem["MessageRefreshTime"] + ""):2 : 2;
}
}
}