/**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicants()
 {
     return $this->hasMany(Applicant::className(), ['academic' => 'id']);
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicants()
 {
     return $this->hasMany(Applicant::className(), ['fileserver' => 'id']);
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicants()
 {
     return $this->hasMany(Applicant::className(), ['personal' => 'id']);
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicant0()
 {
     return $this->hasOne(Applicant::className(), ['id' => 'applicant']);
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicants()
 {
     return $this->hasMany(Applicant::className(), ['college' => 'id']);
 }