コード例 #1
0
ファイル: Nationality.php プロジェクト: aoopvn/EduSec4.0.0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getStuMasters()
 {
     return $this->hasMany(StuMaster::className(), ['stu_master_nationality_id' => 'nationality_id']);
 }
コード例 #2
0
ファイル: Batches.php プロジェクト: anazhd/EduSec
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getStuMasters()
 {
     return $this->hasMany(StuMaster::className(), ['stu_master_batch_id' => 'batch_id']);
 }
コード例 #3
0
ファイル: StuInfo.php プロジェクト: hirenbhut93/testdemo
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getStuMaster()
 {
     return $this->hasOne(StuMaster::className(), ['stu_master_stu_info_id' => 'stu_info_id']);
 }