first commit

This commit is contained in:
liu
2026-07-23 10:43:59 +08:00
commit 760c9ba8b6
459 changed files with 32900 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;
}