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#

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