Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCoas()
 {
     return $this->hasMany(Coa::className(), ['parent_id' => 'id']);
 }
Example #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCoa()
 {
     return $this->hasOne(Coa::className(), ['id' => 'coa_id']);
 }