using DS.WMS.Core.Flow.Entity; namespace DS.WMS.Core.Flow.Dtos; /// /// 工作流审核请求 /// public class FlowInstanceAuditReq { /// /// 实例ID /// public long Id { get; set; } /// /// 节点Id /// public string NodeId { get; set; } /// /// 审核状态:1 同意 2 不同意 /// public int Status { get; set; } /// /// 审批备注 /// public string AuditNote { get; set; } = ""; } /// /// 审核信息 /// public class FlowAuditInfo { public FlowInstance Instance { get; set; } /// /// 审核状态 1 同意 2 不同意 /// public int Status { get; set; } /// /// 审批备注 /// public string? AuditNote { get; set; } }