| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace app\common\model;
- class UsersGroup extends BaseModel
- {
- /**
- * @var string
- */
- protected $name = 'users_group';
- /**
- * @var array
- */
- protected $auto = [];
- /**
- * @var array
- */
- protected $insert = ['created_at','updated_at'];
- /**
- * @var array
- */
- protected $update = ['updated_at'];
- /**
- * @var array
- */
- protected $hidden = ['updated_at'];
- }
|