using System; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace RoadFlow.Data.Model { [Serializable] public class WorkFlowArchives { /// /// ID /// [DisplayName("ID")] public Guid ID { get; set; } /// /// 流程ID /// [DisplayName("流程ID")] public Guid FlowID { get; set; } /// /// 步骤ID /// [DisplayName("步骤ID")] public Guid StepID { get; set; } /// /// FlowName /// [DisplayName("FlowName")] public string FlowName { get; set; } /// /// StepName /// [DisplayName("StepName")] public string StepName { get; set; } /// /// 任务ID /// [DisplayName("任务ID")] public Guid TaskID { get; set; } /// /// 组 /// [DisplayName("组")] public Guid GroupID { get; set; } /// /// 实例ID /// [DisplayName("实例ID")] public string InstanceID { get; set; } /// /// 标题 /// [DisplayName("标题")] public string Title { get; set; } /// /// 内容 /// [DisplayName("内容")] public string Contents { get; set; } /// /// 意见内容 /// [DisplayName("意见内容")] public string Comments { get; set; } /// /// 写入时间 /// [DisplayName("写入时间")] public DateTime WriteTime { get; set; } } }