コード例 #1
0
ファイル: CodeMember.php プロジェクト: fnoorman/dev
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCodeBank()
 {
     return $this->hasOne(CodeBank::className(), ['code' => 'codeBank_code']);
 }
コード例 #2
0
ファイル: OrderProduct.php プロジェクト: fnoorman/dev
 public function getCodes()
 {
     return $this->hasOne(CodeBank::className(), ['order_product_id' => 'id']);
     //        return $this->hasOne(CodeBank::className(),['order_product_id'=>'id']);
 }