| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\admin\model;
- use app\common\model\BaseModel;
- class Roles extends BaseModel
- {
- /**
- * @var string
- */
- protected $name = 'system_roles';
- /**
- * @var array
- */
- protected $auto = [];
- /**
- * @var array
- */
- protected $insert = ['created_at','updated_at'];
- /**
- * @var array
- */
- protected $update = ['updated_at'];
- /**
- * @var array
- */
- protected $field = [
- ];
- }
|