project Employees

This commit is contained in:
2023-05-04 01:18:24 +03:00
parent 1b8ca5b695
commit b2f482e10b
4 changed files with 142 additions and 12 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace frontend\modules\api\models;
class Manager extends \common\models\Manager
{
public function fields(): array
{
return [
'id',
'user_id',
'managerEmployees'
];
}
}