/***********************
* 说明:基础审批模型
* 创建人:龚宇超
* 创建日期:2018-02-07
* 修改人:
* 修改日期:
* 修改备注:
* 版本:1.0.0.0
***********************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace Lskj.Model
{
public class BaseAuditModel : ModuleModel
{
///
/// 审批BillType类型
///
/// The type of the bill.
public string BillType { get { return this.PrefixKey + "billType"; } }
///
/// 进度踪审名
///
/// The name of the step over.
public string StepOverName { get { return this.PrefixKey + "stepover"; } }
///
/// 返退标记
///
/// The back selected.
public string BackSelected { get; set; }
///
/// 滚动条显示
///
///
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;
}
}
}