Exemple #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getStuMasters()
 {
     return $this->hasMany(StuMaster::className(), ['stu_master_nationality_id' => 'nationality_id']);
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getStuMasters()
 {
     return $this->hasMany(StuMaster::className(), ['stu_master_batch_id' => 'batch_id']);
 }
Exemple #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getStuMaster()
 {
     return $this->hasOne(StuMaster::className(), ['stu_master_stu_info_id' => 'stu_info_id']);
 }