示例#1
0
 public function getJackpotDetails()
 {
     return $this->hasMany(JackpotDetails::className(), ['continent' => 'code']);
 }
示例#2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getJackpot()
 {
     return $this->hasOne(JackpotDetails::className(), ['id' => 'jackpot_id']);
 }
示例#3
0
 public function getJackpotDetailsCode()
 {
     return $this->hasMany(JackpotDetails::className(), ['countryid' => 'code']);
 }