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.
|
|
|
|
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; }
|
|
|
|
|
}
|