コード例 #1
0
ファイル: Benefit.php プロジェクト: seans888/SMF-Project
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAllowances()
 {
     return $this->hasMany(Allowance::className(), ['benefit_allowance_id' => 'benefit_id']);
 }
コード例 #2
0
ファイル: Scholars.php プロジェクト: seans888/SMF-Project
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAllowances()
 {
     return $this->hasMany(Allowance::className(), ['allowance_scholar_id' => 'scholar_id']);
 }
コード例 #3
0
ファイル: Scholar.php プロジェクト: seans888/SMF-Project
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAllowanceAllowanceArea()
 {
     return $this->hasOne(Allowance::className(), ['allowance_area' => 'allowance_allowance_area']);
 }