SVN-Revision: r813
This commit is contained in:
tdx
2025-07-01 03:23:20 +00:00
parent 99cafd569d
commit b42e4e2df0
+5
View File
@@ -642,6 +642,10 @@ namespace Lskj.Model
/// </summary>
public bool AssociationLeft;
/// <summary>
/// 粘贴时是否开启新版模式
/// </summary>
public bool IsNewPost;
/// <summary>
/// 获取post所需参数的sql后参数存入的sql
/// </summary>
public string SynchronizationToolSQL;
@@ -1070,6 +1074,7 @@ namespace Lskj.Model
this.popupIsMax = rowItem.Table.Columns.Contains("popupIsMax") && !string.IsNullOrEmpty(rowItem["popupIsMax"] + "") ? "1".Equals(rowItem["popupIsMax"] + "") : false;
this.DelToPost = rowItem.Table.Columns.Contains("DelToPost") ? rowItem["DelToPost"] + "" : string.Empty;
this.DelToPostSql = rowItem.Table.Columns.Contains("DelToPostSql") ? rowItem["DelToPostSql"] + "" : string.Empty;
this.IsNewPost = rowItem.Table.Columns.Contains("IsNewPost") ? !"1".Equals(rowItem["IsNewPost"] + "") : true;
this.AssociationLeft = rowItem.Table.Columns.Contains("AssociationLeft") ? !"1".Equals(rowItem["AssociationLeft"] + "") : true;
this.SynchronizationToolSQL = rowItem.Table.Columns.Contains("SynchronizationToolSQL") ? rowItem["SynchronizationToolSQL"] + "" : string.Empty;
this.selectLeaf = rowItem.Table.Columns.Contains("selectLeaf") ? "1".Equals(rowItem["selectLeaf"] + "") : false;