コード例 #1
0
ファイル: DealLog.php プロジェクト: yinheark/yincart2
 public function getOrderItem()
 {
     return $this->hasOne(Kiwi::getOrderItemClass(), ['order_id' => 'order_id', 'item_id' => 'item_id']);
 }
コード例 #2
0
ファイル: Order.php プロジェクト: yinheark/yincart2
 public function getOrderItems()
 {
     return $this->hasMany(Kiwi::getOrderItemClass(), ['order_id' => 'order_id']);
 }