namespace DS.WMS.Core.Flow.Dtos; /// /// 流程操作历史 /// public class FlowInstanceHistoryRes { /// /// 主键Id /// public long Id { get; set; } /// /// 操作内容 /// public string Content { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } }