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.
16 lines
325 B
C#
16 lines
325 B
C#
10 months ago
|
namespace DS.WMS.Core.Flow.Dtos;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 撤销流程
|
||
|
/// </summary>
|
||
|
public class CancelFlowInstanceReq
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 召回、撤销的流程实例ID
|
||
|
/// </summary>
|
||
|
public long Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 撤回备注
|
||
|
/// </summary>
|
||
|
public string Note { get; set; }
|
||
|
}
|