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
350 B

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