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.
21 lines
449 B
C#
21 lines
449 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Op.Entity;
|
|
|
|
namespace DS.WMS.Core.Flow.Dtos
|
|
{
|
|
public class FlowCallback
|
|
{
|
|
public long InstanceId { get; set; }
|
|
|
|
public long BusinessId { get; set; }
|
|
|
|
public BusinessType BusinessType { get; set; }
|
|
|
|
public string AuditType { get; set; }
|
|
|
|
public FlowStatusEnum FlowStatus { get; set; }
|
|
|
|
public string RejectReason { get; set; } = string.Empty;
|
|
}
|
|
}
|