first commit

This commit is contained in:
liu
2026-07-13 15:23:29 +08:00
commit 50885a98c8
473 changed files with 33772 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace Modules\Common\Enum;
/**
* 响应状态枚举类
*/
enum ShowType: int
{
// 成功响应
case SUCCESS_MESSAGE = 0;
// 警告响应
case WARN_MESSAGE = 1;
// 错误响应
case ERROR_MESSAGE = 2;
// 成功通知
case SUCCESS_NOTIFICATION = 3;
// 警告通知
case WARN_NOTIFICATION = 4;
// 错误通知
case ERROR_NOTIFICATION = 5;
// 静默响应
case SILENT = 99;
}