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
368 B
C#
16 lines
368 B
C#
using Myshipping.Core;
|
|
using Myshipping.FlowCenter.Entity;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Myshipping.FlowCenter.Service;
|
|
|
|
/// <summary>
|
|
/// 工作流输出参数
|
|
/// </summary>
|
|
public class FlcFlowinstanceOutput:FlcFlowinstance
|
|
{
|
|
public string WebId { get; set; }
|
|
public List<FlcFlowInstanceOperationHistory> hisList { get; set; }
|
|
|
|
}
|