SVN r813
SVN-Revision: r813
This commit is contained in:
@@ -642,6 +642,10 @@ namespace Lskj.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public bool AssociationLeft;
|
public bool AssociationLeft;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// 粘贴时是否开启新版模式
|
||||||
|
/// </summary>
|
||||||
|
public bool IsNewPost;
|
||||||
|
/// <summary>
|
||||||
/// 获取post所需参数的sql后参数存入的sql
|
/// 获取post所需参数的sql后参数存入的sql
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string SynchronizationToolSQL;
|
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.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.DelToPost = rowItem.Table.Columns.Contains("DelToPost") ? rowItem["DelToPost"] + "" : string.Empty;
|
||||||
this.DelToPostSql = rowItem.Table.Columns.Contains("DelToPostSql") ? rowItem["DelToPostSql"] + "" : 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.AssociationLeft = rowItem.Table.Columns.Contains("AssociationLeft") ? !"1".Equals(rowItem["AssociationLeft"] + "") : true;
|
||||||
this.SynchronizationToolSQL = rowItem.Table.Columns.Contains("SynchronizationToolSQL") ? rowItem["SynchronizationToolSQL"] + "" : string.Empty;
|
this.SynchronizationToolSQL = rowItem.Table.Columns.Contains("SynchronizationToolSQL") ? rowItem["SynchronizationToolSQL"] + "" : string.Empty;
|
||||||
this.selectLeaf = rowItem.Table.Columns.Contains("selectLeaf") ? "1".Equals(rowItem["selectLeaf"] + "") : false;
|
this.selectLeaf = rowItem.Table.Columns.Contains("selectLeaf") ? "1".Equals(rowItem["selectLeaf"] + "") : false;
|
||||||
|
|||||||
Reference in New Issue
Block a user