SVN r501
SVN-Revision: r501
This commit is contained in:
@@ -28,23 +28,3 @@ namespace Lskj.Model
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The name of the step over.</value>
|
/// <value>The name of the step over.</value>
|
||||||
public string StepOverName { get { return this.PrefixKey + "stepover"; } }
|
public string StepOverName { get { return this.PrefixKey + "stepover"; } }
|
||||||
/// <summary>
|
|
||||||
/// 返退标记
|
|
||||||
/// </summary>
|
|
||||||
/// <value>The back selected.</value>
|
|
||||||
public string BackSelected { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// 滚动条显示
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="rowItem"></param>
|
|
||||||
public bool DisplayScroll;
|
|
||||||
|
|
||||||
public BaseAuditModel(DataRow rowItem)
|
|
||||||
: base(rowItem)
|
|
||||||
{
|
|
||||||
if (rowItem == null) return;
|
|
||||||
this.BackSelected = rowItem.Table.Columns.Contains("backSelected") ? rowItem["backSelected"] + "" : "0";
|
|
||||||
this.DisplayScroll= rowItem.Table.Columns.Contains("DisplayScroll") ?"1".Equals( rowItem["DisplayScroll"] + "") : false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -41,20 +41,4 @@ namespace Lskj.Model
|
|||||||
/// 返回标记
|
/// 返回标记
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The back selected.</value>
|
/// <value>The back selected.</value>
|
||||||
public bool SaveRefresh { get; set; }
|
public b
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 单据审批模型
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="rowItem">The row item.</param>
|
|
||||||
public BillAuditModel(DataRow rowItem)
|
|
||||||
: base(rowItem)
|
|
||||||
{
|
|
||||||
if (rowItem == null) return;
|
|
||||||
DataColumnCollection columns = rowItem.Table.Columns;
|
|
||||||
this.BackSelected = columns.Contains("backSelected") ? rowItem["backSelected"] + "" : "0";
|
|
||||||
this.AuditLoadDetailFlag = columns.Contains("AuditLoadDetailFlag") ? rowItem["AuditLoadDetailFlag"] + "" : "";
|
|
||||||
this.SaveRefresh = columns.Contains("SaveRefresh") ? "1".Equals(rowItem["SaveRefresh"] + "") : false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user