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.
42 lines
931 B
C#
42 lines
931 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Op.Entity;
|
|
|
|
namespace DS.WMS.Core.Flow.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 工作流完成回调信息
|
|
/// </summary>
|
|
public class FlowCallback
|
|
{
|
|
/// <summary>
|
|
/// 工作流实例ID
|
|
/// </summary>
|
|
public long InstanceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务ID
|
|
/// </summary>
|
|
public long BusinessId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务类型
|
|
/// </summary>
|
|
public BusinessType? BusinessType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工作流类型
|
|
/// </summary>
|
|
public AuditType? Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 审核状态
|
|
/// </summary>
|
|
public FlowStatusEnum FlowStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 驳回原因
|
|
/// </summary>
|
|
public string? RejectReason { get; set; }
|
|
}
|
|
}
|