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 AsusgJob2Project extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'obsolete_asusg_job2project';
- }
- public function getJobplan()
- {
- return $this->hasOne(AsusgJobplan::className(), ['id' => 'asusg_jobplan_id']);
- }
- }
|