| 123456789101112131415 |
- <?php
- namespace app\common\enum\user;
- use app\common\enum\CommonEnum;
- class UserEnum extends CommonEnum
- {
- const IS_DEL = parent::IS_DEL;
- const STATUS = [
- 'Disabled' => ['code' => 0, 'name' => '禁用'],
- 'Normal' => ['code' => 1, 'name' => '正常']
- ];
- }
|