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
315 B
C#
16 lines
315 B
C#
10 months ago
|
namespace DS.WMS.Core.Flow.Dtos;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建流程实例
|
||
|
/// </summary>
|
||
|
public class CreateFlowInstanceReq
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 业务Id
|
||
|
/// </summary>
|
||
|
public long BusinessId { get; set; }
|
||
|
/// <summary>
|
||
|
/// 模板Id
|
||
|
/// </summary>
|
||
|
public long? TemplateId { get; set; }
|
||
|
}
|