21 lines
327 B
PHP
21 lines
327 B
PHP
<?php
|
|
|
|
namespace App\Constants\Admin;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
#[Constants]
|
|
class UserCode extends AbstractConstants
|
|
{
|
|
/**
|
|
* 禁用
|
|
* @Message("该用户已被禁用")
|
|
*/
|
|
const DISABLE = 2;
|
|
|
|
/**
|
|
* 启用
|
|
*/
|
|
const ENABLE = 1;
|
|
} |