using System;
using System.Data;
namespace DSWeb.Models
{
public class WorkFlowDoEntity //WorkFlowDo工作流执行表
{
#region 私有成员
private string _gid;//主键唯一值
private string _workflow_id;//工作流GID
private string _auditor;//审核人GID
private string _step_id;//工作流步骤GID
private string _bill_no;//申请编号
private DateTime _audit_time;//审核时间
private string _bsno;//委托业务编号
private string _fee_id;//费用编号
private int _fee_status;//费用状态
private string _do_query_sql;//执行条件查询的SQL语句
private int _step_no;//工作流执行顺序
private bool _is_finish;//是否完成本次步骤
private bool _is_delete;//是否被废除
private string _delete_step;//被驳回的步骤GID
private string _delete_operator;//驳回步骤的操作人
private int _delete_step_no;//驳回步骤编号
private string _applicant;//提交人
#endregion
public WorkFlowDoEntity()
{
}
#region 读写属性
///
/// 主键唯一值
///
public string GID
{
get { return _gid; }
set { _gid = value; }
}
///
/// 工作流GID
///
public string WorkFlowID
{
get { return _workflow_id; }
set { _workflow_id = value; }
}
///
/// 申请编号
///
public string BillNO
{
get { return _bill_no; }
set { _bill_no = value; }
}
///
/// 工作流步骤GID
///
public string StepID
{
get { return _step_id; }
set { _step_id = value; }
}
///
/// 审核人GID
///
public string Auditor
{
get { return _auditor; }
set { _auditor = value; }
}
///
/// 审核时间
///
public DateTime AuditTime
{
get { return _audit_time; }
set { _audit_time = value; }
}
///
/// 委托业务编号
///
public string BSNO
{
get { return _bsno; }
set { _bsno = value; }
}
///
/// 费用GID
///
public string FeeID
{
get { return _fee_id; }
set { _fee_id = value; }
}
///
/// 费用状态
///
public int FeeStatus
{
get { return _fee_status; }
set { _fee_status = value; }
}
///
/// 执行条件查询的SQL语句
///
public string DoQuerySql
{
get { return _do_query_sql; }
set { _do_query_sql = value; }
}
///
/// 工作流执行顺序
///
public int StepNO
{
get { return _step_no; }
set { _step_no = value; }
}
///
/// 是否已经完成本次步骤
///
public bool IsFinish
{
get { return _is_finish; }
set { _is_finish = value; }
}
///
/// 是否被废除
///
public bool IsDelete
{
get { return _is_delete; }
set { _is_delete = value; }
}
///
/// 被驳回的步骤GID
///
public string DeleteStep
{
get { return _delete_step; }
set { _delete_step = value; }
}
///
/// 驳回步骤的操作人
///
public string DeleteOperator
{
get { return _delete_operator; }
set { _delete_operator = value; }
}
///
/// 驳回步骤编号
///
public int DeleteStepNO
{
get { return _delete_step_no; }
set { _delete_step_no = value; }
}
///
/// 提交人
///
public string Applicant
{
get { return _applicant; }
set { _applicant = value; }
}
#endregion
}
}