using Datory;
using Datory.Annotations;
namespace GxPress.Entity.WorkProcess
{
///
/// 审批流程定义
///
[DataTable("tede_process")]
public class Process : Datory.Entity
{
///
/// 名称
///
[DataColumn]
public string Name { get; set; }
///
/// 工作流组id
///
[DataColumn]
public int GroupId { get; set; }
///
/// 图标url
///
[DataColumn]
public string IconUrl { get; set; }
///
/// 描述
///
[DataColumn]
public string Description { get; set; }
///
/// 状态
///
[DataColumn]
public bool IsDisabled { get; set; }
///
/// 限制类型
///
[DataColumn]
public string LimitType { get; set; }
///
/// 排序
///
[DataColumn]
public int Sort { get; set; }
///
/// 是否允许用户自选审批人
///
[DataColumn]
public bool AllowApproverCheck { get; set; }
///
/// 是否允许用户自选抄送人
///
[DataColumn]
public bool AllowCarbonCopy { get; set; }
///
/// Word模板文件地址
///
[DataColumn]
public string TemplatePath { get; set; }
}
}