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.
BookingHeChuan/Myshipping.FlowCenter/Flowscheme/Dto/FlcFlowschemeOutput.cs

34 lines
1.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
namespace Myshipping.FlowCenter.Service;
/// <summary>
/// 流程管理输出参数
/// </summary>
public class FlcFlowschemeOutput:FlcFlowschemeInput
{
/// <summary>
/// 流程Id
/// </summary>
public string Id { get; set; }
public int? Fields { get; set; }
public string Name { get; set; }
public string WebId { get; set; }
public string ContentData { get; set; }
public string ContentParse { get; set; }
public string Content { get; set; }
/// <summary>
/// 如果下个执行节点是运行时指定执行者。需要传指定的类型
/// <para>取值为RUNTIME_SPECIAL_ROLE、RUNTIME_SPECIAL_USER</para>
/// </summary>
public string NextNodeDesignateType { get; set; }
/// <summary>
/// 如果下个执行节点是运行时指定执行者。该值表示具体的执行者
/// <para>如果NodeDesignateType为RUNTIME_SPECIAL_ROLE则该值为指定的角色</para>
/// <para>如果NodeDesignateType为RUNTIME_SPECIAL_USER则该值为指定的用户</para>
/// </summary>
public string[] NextNodeDesignates { get; set; }
public string NextMakerName { get; set; }
}