示例#1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBasket()
 {
     return $this->hasOne(Basket::className(), ['id' => 'basket_id']);
 }
示例#2
0
文件: Items.php 项目: koakumasd/shop
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBaskets()
 {
     return $this->hasMany(Basket::className(), ['item_id' => 'id']);
 }