UserEnum.php 249 B

12345678910111213
  1. <?php
  2. namespace app\common\enum\user;
  3. use app\common\enum\CommonEnum;
  4. class UserEnum extends CommonEnum
  5. {
  6. const STATUS = [
  7. 'Disabled' => ['code' => 0, 'name' => '禁用'],
  8. 'Normal' => ['code' => 1, 'name' => '正常']
  9. ];
  10. }