12345678910111213141516171819202122232425262728 |
- <?php
- namespace app\models\entity;
- use Yii;
- /**
- * This is the model class for table "asusg_employee".
- *
- * @property int $id
- * @property string $asu_id
- * @property string $name
- * @property int $smopp_id
- */
- class AsusgTask2Project extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'asusg_task2project';
- }
-
-
-
- }
|