UserEnum.php 285 B

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