取消使用流程上下文自定义的字典数据;更改流程环境接口的输出方式

This commit is contained in:
fengjiayi
2024-11-08 17:30:51 +08:00
parent dff9a00fb6
commit 8c54b9a014
41 changed files with 448 additions and 505 deletions

47
Library/Enums/InfoType.cs Normal file
View File

@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serein.Library
{
/// <summary>
/// 信息输出等级
/// </summary>
public enum InfoClass
{
/// <summary>
/// 琐碎的
/// </summary>
Trivial,
/// <summary>
/// 一般的
/// </summary>
General,
/// <summary>
/// 重要的
/// </summary>
Important,
}
/// <summary>
/// 信息类别
/// </summary>
public enum InfoType
{
/// <summary>
/// 普通信息
/// </summary>
INFO,
/// <summary>
/// 错误信息(但不影响运行)
/// </summary>
WARN,
/// <summary>
/// 异常信息(影响了运行)
/// </summary>
ERROR,
}
}