feat: 实现TCP Server

This commit is contained in:
zimoyin
2026-03-02 21:59:43 +08:00
parent 043306819b
commit a79dfae57d
144 changed files with 15785 additions and 140 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace app\flow;
/**
* 数据库操作类型枚举
* 用于 ProcessContext 中标识需要执行的数据库操作
*/
enum DbOperationType: string
{
// 插入 actions 原始数据
case INSERT = 'insert';
// 更新内镜与 actions process_data 数据
case UPDATE = 'update';
// 不进行任何数据库操作
case NONE = 'none';
}