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

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,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Contract
{
/// <summary>
/// 用于指定统一过程调用结果回执的行为码
/// </summary>
[Flags]
public enum EInstructReceipt : int
{
/// <summary>
/// 正常执行完成,可以继续执行;
/// </summary>
Normal = 1,
/// <summary>
/// 产生告警信息,可以继续执行;
/// </summary>
Warning = 2,
/// <summary>
/// 产生崩溃异常,需要中断执行;
/// </summary>
Failed = 4
}
}