using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace wispro.sp.entity.workflowDefine
{
public class workflow
{
///
/// 流程编号
///
public int Id { get; set; }
///
/// 流程名称
///
public string Name { get; set; }
///
/// 绑定对象类型
///
public string ContentObjectType { get; set; }
///
/// 初始化步骤Id
///
public int InitStepId { get; set; }
///
/// 结束步骤Id
/// 每个流程都有一个结束步骤,结束步骤只是一个标志,
/// 不能做任何操作
///
public int EndStepId { get; set; }
}
}