コード例 #1
0
ファイル: OrderLog.php プロジェクト: sea129/kbay
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEbay()
 {
     return $this->hasOne(EbayAccount::className(), ['id' => 'ebay_id']);
 }
コード例 #2
0
ファイル: ListingTemplate.php プロジェクト: sea129/kbay
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEbayAccounts()
 {
     return $this->hasMany(EbayAccount::className(), ['listing_template_id' => 'id']);
 }