using System; using System.Collections.Generic; using System.Text; using GxPress.Entity.WorkProcessDto; namespace GxPress.Result.App.Flow { public class NodeResult { /// /// 头像地址 /// public string AvatarUrl { get; set; } /// /// 用户名 /// public string Name { get; set; } /// /// 动作类型 /// public string Action { get; set; } /// /// 执行时间 /// public DateTime? CreatedDate { get; set; } /// /// 审核/抄送意见 /// public string Message {get;set;} /// /// 附件列表 /// public IEnumerable FileUrls { get; set; } } }