コード例 #1
0
ファイル: Precos.php プロジェクト: brunofunny/pcbuilder
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPeca()
 {
     return $this->hasOne(Pecas::className(), ['id' => 'peca_id']);
 }
コード例 #2
0
ファイル: Categorias.php プロジェクト: brunofunny/pcbuilder
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPecas()
 {
     return $this->hasMany(Pecas::className(), ['categoria_id' => 'id']);
 }