using System.Collections.Generic;
using Datory;
using Datory.Annotations;
namespace GxPress.Entity.WorkProcess
{
///
/// 工作流分组
///
[DataTable("tede_process_group")]
public class ProcessGroup : Datory.Entity
{
///
/// 名称
///
[DataColumn]
public string Name { get; set; }
///
/// 排序
///
[DataColumn]
public int Sort { get; set; }
///
/// 工作流数组
///
public IEnumerable Processes { get; set; }
}
}