Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getRetornos()
 {
     return $this->hasMany(Retorno::className(), ['boleto_cedente_id' => 'id']);
 }
Example #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getRetorno()
 {
     return $this->hasOne(Retorno::className(), ['id' => 'retorno_id']);
 }