mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-04-12 10:56:34 +08:00
取消使用流程上下文自定义的字典数据;更改流程环境接口的输出方式
This commit is contained in:
@@ -195,68 +195,5 @@ namespace Serein.Library
|
||||
|
||||
|
||||
|
||||
///// <summary>
|
||||
///// 节点入参参数详情
|
||||
///// </summary>
|
||||
|
||||
//public partial class TempParameterDetails
|
||||
//{
|
||||
// private readonly MethodDetails methodDetails;
|
||||
|
||||
// /// <summary>
|
||||
// /// 参数索引
|
||||
// /// </summary>
|
||||
// public int Index { get; set; }
|
||||
// /// <summary>
|
||||
// /// 是否为显式参数(固定值/表达式)
|
||||
// /// </summary>
|
||||
// public bool IsExplicitData { get; set; }
|
||||
// /// <summary>
|
||||
// /// 转换器 IEnumConvertor<,>
|
||||
// /// </summary>
|
||||
// public Func<object, object> Convertor { get; set; }
|
||||
// /// <summary>
|
||||
// /// 显式类型
|
||||
// /// </summary>
|
||||
// public Type ExplicitType { get; set; }
|
||||
|
||||
// /// <summary>
|
||||
// /// 目前存在三种状态:Select/Bool/Value
|
||||
// /// <para>Select : 枚举值</para>
|
||||
// /// <para>Bool : 布尔类型</para>
|
||||
// /// <para>Value : 除以上类型之外的任意参数</para>
|
||||
// /// </summary>
|
||||
// public string ExplicitTypeName { get; set; }
|
||||
|
||||
// /// <summary>
|
||||
// /// 方法需要的类型
|
||||
// /// </summary>
|
||||
// public Type DataType { get; set; }
|
||||
|
||||
// /// <summary>
|
||||
// /// 方法入参参数名称
|
||||
// /// </summary>
|
||||
// public string Name { get; set; }
|
||||
|
||||
|
||||
// private string _dataValue;
|
||||
// /// <summary>
|
||||
// /// 入参值(在UI上输入的文本内容)
|
||||
// /// </summary>
|
||||
|
||||
// public string DataValue
|
||||
// {
|
||||
// get => _dataValue; set
|
||||
// {
|
||||
// _dataValue = value;
|
||||
// Console.WriteLine($"更改了{value}");
|
||||
// }
|
||||
// }
|
||||
|
||||
// /// <summary>
|
||||
// /// 如果是引用类型,拷贝时不会发生改变。
|
||||
// /// </summary>
|
||||
// public string[] Items { get; set; }
|
||||
//}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user