Common.php
329 字节
<?php
namespace App\Enums\Common;
use BenSampo\Enum\Enum;
/**
* 共用枚举类
* @method static static YES()
* @method static static NO()
*/
final class Common extends Enum
{
//公用 : 是和否 1-是 2-否
const YES = 1;
const NO = 2;
//端
const A='a';
const B='b';
const C='c';
}