fix:member

This commit is contained in:
LAPTOP-7SGDREK0\shiweijun
2025-01-10 17:53:55 +08:00
parent 89b8db78dd
commit 2cee9e27c4
5 changed files with 147 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Constants\Admin;
use Hyperf\Constants\AbstractConstants;
use Hyperf\Constants\Annotation\Constants;
#[Constants]
class MemberCode extends AbstractConstants
{
/**
* 未删除
*/
const int IS_NO_DEL = 1;
/**
* @Message("该用户已被删除")
*/
const int IS_DEL = 2;
}