コード例 #1
0
ファイル: Ventas.php プロジェクト: juanchi008/playa_auto
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdAuto()
 {
     return $this->hasOne(Autos::className(), ['id' => 'id_auto']);
 }
コード例 #2
0
ファイル: Estados.php プロジェクト: juanchi008/playa_auto
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAutos()
 {
     return $this->hasMany(Autos::className(), ['id_estado' => 'id']);
 }