You can not 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
353 B

using Magic.Core;
using Magic.FlowCenter.Entity;
using System.Collections.Generic;
namespace Magic.FlowCenter.Service;
/// <summary>
/// 工作流输出参数
/// </summary>
public class FlcFlowinstanceOutput:FlcFlowinstance
{
public string WebId { get; set; }
public List<FlcFlowInstanceOperationHistory> hisList { get; set; }
}