You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
909 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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