namespace DS.WMS.Core.Flow.Dtos; /// /// 流程操作历史 /// public class FlowInstanceHistoryRes { /// /// 主键Id /// public long Id { get; set; } /// /// 操作内容 /// public string Content { get; set; } /// /// 审批结果 /// public int? Result { get; set; } /// /// 审批备注 /// public string? Note { get; set; } /// /// 审批人 /// public string? UserName { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } }