mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-04-08 08:56:35 +08:00
取消使用流程上下文自定义的字典数据;更改流程环境接口的输出方式
This commit is contained in:
47
Library/Enums/InfoType.cs
Normal file
47
Library/Enums/InfoType.cs
Normal 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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user