コード例 #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicants()
 {
     return $this->hasMany(Applicant::className(), ['academic' => 'id']);
 }
コード例 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicants()
 {
     return $this->hasMany(Applicant::className(), ['fileserver' => 'id']);
 }
コード例 #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicants()
 {
     return $this->hasMany(Applicant::className(), ['personal' => 'id']);
 }
コード例 #4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicant0()
 {
     return $this->hasOne(Applicant::className(), ['id' => 'applicant']);
 }
コード例 #5
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApplicants()
 {
     return $this->hasMany(Applicant::className(), ['college' => 'id']);
 }