using System.Collections.Generic;
namespace GxPress.Entity.WorkProcessDto
{
///
/// 添加流程定义
///
public class ProcessDto
{
///
/// id
///
public int Id { get; set; }
///
/// 基本信息
///
///
/// 名称
///
public string Name { get; set; }
///
/// 工作流组id
///
public int GroupId { get; set; }
///
/// 图标url
///
public string IconUrl { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 限制类型
/// NoLimit,没有限制
/// LimitUser,限制用户
/// LimitDepartment, 限制部门
/// LimitRole,限制角色
///
public string LimitType { get; set; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 发起限制
///
public List RequestLimits { get; set; }
///
/// 表单定义
///
public List FormFields { get; set; }
///
/// 节点定义
///
public List ProcessNodes { get; set; }
///
/// 是否允许用户自选审批人
///
public bool AllowApproverCheck { get; set; }
///
/// 是否允许用户自选抄送人
///
public bool AllowCarbonCopy { get; set; }
///
/// Word模板文件地址
///
public string TemplatePath { get; set; }
}
}