using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.SystemView { /// /// 审核记录列表 /// public class WorkflowApproveHistoryView { /// /// 审核记录ID /// public Guid? ApproveHistoryID { get; set; } /// /// 流程序号 /// public int? PID { get; set; } /// /// 审核人ID /// public Guid ApproveUserID { get; set; } /// /// 审核人编号(用户名) /// public string ApproveUserNo { get; set; } /// /// 审核人姓名 /// public string ApproveUserName { get; set; } /// /// 步骤名称 /// public string PName { get; set; } /// /// 审核动作名称 /// public string ActionName { get; set; } /// /// 审核时间 /// public DateTime? ApproveTime { get; set; } /// /// 结果状态ID /// public int RecordStatus { get; set; } /// /// 结果状态名称 /// public string RecordStatusDesc { get; set; } /// /// 处理意见 /// public string Comment { get; set; } } }