将以往的代码复制到代码库

This commit is contained in:
于智纯
2025-08-30 17:19:57 +08:00
parent da46e0242d
commit 20ea70bf64
198 changed files with 10075 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Contract
{
/// <summary>
/// 指令输出信息的类型
/// </summary>
public enum EInstructOutput
{
/// <summary>
/// 启动信息:【一般用于态势感知器】用于提示一条指令已经开始执行
/// </summary>
InitateInfo,
/// <summary>
/// 过程信息:【一般用于态势感知器】指令在执行的过程中输出的信息
/// </summary>
ProcessInfo,
/// <summary>
/// 回执信息:【一般用于报告生成器】指令已经执行完成时输出的信息
/// </summary>
ReceiptInfo
}
}